一、linux
#!/bin/sh #name : test linux shell # 經過pwd 命令獲取路徑,而後在判斷是否是目錄, # 下面的這個命令能夠寫成兩個反引號`` 和$() 是一樣的功能 File=$(pwd) echo $File if [ "$File" = '/' ] then echo " this is directory " else echo " this is file or link " echo "out of this process" exit 1 fi
二、shell
# 判斷獲取的參數個數 #!/bin/sh #name : test linux shell name=$1 age=$2 count=$# if [ $# -lt 2 ] then echo "usage: `basename $0` arg1 arg2 arg3 " >&2 exit 1 else echo "arg1 $1 arg2 $2 and total $# and name is $0" fi
注:this
一、這裏的$1 $2 就是獲取參數的指定位置,$0 就是文件的名稱 $# 是參數的總數code
二、 其中的 $() 和 反引號 `` 就是執行括號中命令。
it
三、 參數怎麼傳那,就是在執行代碼的時候進行傳遞 : sudo sh tests.sh "whd" 12 這樣就傳遞了兩個參數
class