1.shellshell
文件擴展名:.sh #!:約定標記,告訴系統腳本須要的解釋器,即哪種shell 運行shell文件的三種方法 ./test.sh /bin/sh test.sh /bin/bash test.sh
注意:bash
shell變量等號兩邊不能有空格,使用變量的時候加$符號
字符串截取code
# 與 ## 刪除左邊字符 保留右邊字符 % 與 %% 刪除右邊字符 保留左邊字符
比較符圖片
-gt:大於 -lt:小於 -ge:等於大於 -le:小於等於 -eq:等於 -nq:不等於
shell將一列圖片後綴更換字符串
#!/bin/bash for file in test_* do mv $file ${file%%.*}.JPG done
#!/bin/sh cd /data/soft/shell/ for ((i=0; i<10; i++)); do touch test_$i.txt done