編寫SHELL腳本--編寫簡單腳本

1.簡單腳本文件hello.sh,內容如下 #!/bin/bash pwd ls -al  執行腳本:bash hello.sh  或者使用root命令:  ./hello.sh   2.接受用戶參數   $0代表執行的腳本文件名稱   $*代表所有的用戶參數   $?代表上個命令執行後的返回值   $#代表總共多少個參數   $n 代表第幾個參數的值, n代表第幾個參數,    執行:bash
相關文章
相關標籤/搜索