(Linux)(Bash)開始Bash script

Bash script

  • Linux console mode, 可使用shell script, 進行程式化的指令輸出

使用文字編輯器直接編輯.sh
vim a.sh

建立與執行Bash script

chmod 777 a.sh
    ./a.sh

或者

bash a.sh
bash -x a.sh #Debug command

好用的Linux bash shell scipt手冊