Time of Update: 2014-08-08
標籤:des blog http 使用 os 檔案 資料 art
Time of Update: 2014-08-12
標籤:style div linux size on 字串 sp shell $# 是傳給指令碼的參數個數 $0 是指令碼本身的名字 $1 是傳遞給該shell指令碼的第一個參數 $2
Time of Update: 2014-08-12
標籤:使用者登入 更改密碼 service linux start 一、#!/bin/bash#自動添加使用者,並使初始密碼為使用者賬戶名,且使用者登入時強制其更改密碼i=1while [ $i -le 15 ]do if [ $i -le 9 ] then useradd user0
Time of Update: 2014-08-09
標籤:http 使用 io strong for 問題 cti linux 1.各種Unix
Time of Update: 2014-08-07
標籤:continue return exit 控制 breaklinux break、continue、exit、return一般用於控制迴圈的的走向首先通過一個指令碼說明for ((i=1;i<5;i++ ))do if [ $i -eq 3 ] then #
Time of Update: 2014-08-09
標籤:blog http 檔案 for art ar linux line 轉http://blog.csdn.net/hittata/article/details/7042779
Time of Update: 2014-08-11
標籤:style http color 使用 os io strong 檔案 Linux shell 讀取一行方法一通過指定IFS--Internal Field
Time of Update: 2014-08-07
標籤:使用 os io 檔案 for ar 代碼 linux 通常情況下,我們從命令列輸入命令每輸入一次就能夠得到系統的一次響應。一旦需要我們一個接著一個的輸入命令而最後才得到結果的時候,這樣的做法顯然就沒有效率。要達到這樣的目
Time of Update: 2014-08-11
標籤:linux shell 營運工程師系列 指令碼 自動化營運 shell隨筆一. 學好shell編程的知識儲備前面講過,給大家留作業Linux系統命令應用;Vi/vim 編輯器的熟練使用,SSH用戶端軟體的設定;基礎的服務,系統服務ntp,crond,網路服務:nfs,rsync,inotify,sersync,ssh,lanmp。補充:清空日誌的三種方法:echo “ ” >
Time of Update: 2014-08-12
標籤:使用 div 代碼 應用 程式 編程 on 測試 位置參數可以用shift命令左移。比如shift
Time of Update: 2014-08-11
標籤:style blog http color 使用 io strong for 一、IFS 介紹 Shell 指令碼中有個變數叫 IFS(Internal Field Seprator)
Time of Update: 2014-08-11
標籤:style 使用 os io ar cti div 代碼 在shell中,最簡單的調試助手時輸出語句echo,可以通過把許多echo語句放到代碼中進行調試,但必須花費足夠的時間以定位要查看的資訊。可能必須通過許多的輸出才能
Time of Update: 2014-08-09
標籤:shell if 使用 判斷 IF 判斷之前也寫過簡單的shell指令碼,也不是轉職營運,和系統相關的工作比較少,所以不怎麼熟練。最近由於系統總是出現各種亂七八糟的問題,也沒有人來協助,只好自己寫shell指令碼了,都是些基礎的指令碼,但由於shell的文法和通常的進階語言有些不一樣,所以還是要系統的看下常用的部分。
Time of Update: 2014-08-09
標籤:style blog http color 使用 io strong 檔案 問題:通過su命令切換使用者並沒有進入該使用者的shell環境。這是為什嗎? 要解決這個問題,我們必
Time of Update: 2014-08-08
標籤:Distributed File System shell hdfs 分布式 檔案系統 Distributed File SystemHDFS--shell操作 Distributed File
Time of Update: 2014-08-07
標籤:終端 檔案夾 linux 我知道的有兩種方法, 都是命令後面加路徑(nautilus|pcmanfm dir_path)方法一: 使用 nautilus 安裝:sudo apt-get intstall nautilus 效果:nautilus ~方法二:
Time of Update: 2014-08-12
Linux Shell 指令碼監控 WAS (WebSphere Application Server) 的運行狀態原理:通過調用 WAS 內建的指令碼 wsadmin.sh 來擷取執行個體的狀態作業系統版本:[root]# head -1 /etc/redhat-releaseRed Hat Enterprise Linux Server release 5.3 (Tikanga)WAS 版本:[root]#
Time of Update: 2014-08-12
《學習bash》筆記--調試shell程式,《學習bash》shell在shell中,最簡單的調試助手時輸出語句echo,可以通過把許多echo語句放到代碼中進行調試,但必須花費足夠的時間以定位要查看的資訊。可能必須通過許多的輸出才能發現要尋找的資訊。1.set選項最基本的時set -o命令選項,當運行指令碼時,這些選項可以用在命令列上,如下表所示:set -o選項 命令列選項 行為noexec
Time of Update: 2014-08-12
[Shell]判斷目前使用者判斷目前使用者是否為root,如果是提示為root使用者,如果不是提示為普通使用者#!/bin/bash#title: testus.sh#author: orangleliu#date: 2014-08-09#desc: get current user, if it is root user, tell us it is super user or tell us is a common user#================#Function
Time of Update: 2014-08-12
[Shell]輸入參數擷取shell指令碼的輸入參數,並且判斷得到的參數。#!/bin/bash#title: testPT.sh#atuhor: orangleliu#date: 2014-08-08#desc: 輸入2個參數,第二個位元字,如果正確就列印出來,錯誤提示出來#=====================#Function Check#=====================Check(){if [ $# -ne 2 ] #charge params numthen