終端打印linux
echobash
''單引號內$變量無效,""雙引號內$變量有效,``反撇號爲可執行命令,而且能夠把命令結果給變量賦值less
#!/bin/bash no1=2; no2=3; let result=no1+no2 echo $result
echo -e 解析轉義字符,如\n換行測試
文件重定向this
重定向將輸入文本經過截取模式保存到文件:spa
echo "this is a text line one" > test.txt
寫入到文件以前,文件內容首先會被清空。.net
重定向將輸入文本經過追加模式保存到文件:rest
echo "this is a text line one" >> test.txt
寫入到文件以後,會追加到文件結尾。three
標準錯誤輸出的重定向方法:ip
方法一:
[root@localhost text]# cat linuxde.net 2> out.txt //沒有任何錯誤提示,正常運行。
方法二:
[root@localhost text]# cat linuxde.net &> out.txt
[root@localhost text]# cat linuxde.net 2> /dev/null
/dev/null是一個特殊的設備文件,這個文件接受到任何數據都會被丟系,一般被稱爲位桶、黑洞。
if條件語句
if 條件測試操做 then 命令序列 fi
#!/bin/bash #當/boot分區的空間使用超過80%,就輸出報警信息。 use=`df -hT | grep "/boot" | awk '{print $6}' | cut -d "%" -f1` if [ $use -gt 80 ]; then echo "Warning!!/boot disk is full" fi
#!/bin/bash #判斷iptables是否在運行,若是已經在運行提示信息,若是沒有開啓它。 service iptables status &> /dev/null if [ $? -eq 0 ]; then echo "iptables service is running" else service iptables restart fi
條件測試爲可測試文件,測試字符串,測試整數等
測試文件
格式 [ 操做符 文件或目錄 ]
操做符
-d:測試是否爲目錄,是則爲真(Directory)-e:測試目錄或文件是否存在,存在則爲真(Exist)-f:測試是否爲文件,是則爲真(file)
if [ -d $a ] #若是路徑$a是目錄
if [ -e /home/aa.txt ] #aa.txt是否存在
整數值比較
格式 [ 整數1 操做符 整數2 ]
操做符
-eq:等於(equal)-ne:不等於(not equal)-gt:大於(Greater than)-lt:小於(lesser than)-le:小於等於(lesser or equal)-ge:大於等於(Greater or equal)
for循環語句
for 變量名 in 取值列表 do 命令序列 done
最基本的for循環
#!/bin/bash
for x in one two three four
do
echo number $x
done
對目錄中的文件作for循環
#!/bin/bash for x in /var/log/* do #echo "$x is a file living in /var/log" echo $(basename $x) is a file living in /var/log done
while循環語句
while 命令表達式 do 命令列表 done
#!/bin/bash #批量添加20個系統帳戶用戶名依次爲user1~20 i=1 while [ $i -le 20 ] do useradd user$1 echo "123456" | passwd --stdin user$i &> /dev/null i=`expr $i + 1` done
break:跳出循環體
continue:結束剩下的循環語句,從新開始循環.