2012年3月4日

bash shell script兩三事 (1)

#!念作sharp(#) bang(!)
bash -v test.sh
可以檢查shell script的syntax(語法)
bash -x test.sh
可以trace shell script
shopt -a -o nounset
強制變數一定要宣告之後才可以用

將指令結果存入變數的命令替換功能
舊的: `ls`
新的: $(ls)

沒有留言: