Shell腳本的學習筆記

一.寫一個簡單的shell腳本 #!/bin/bash    或者是sh echo "Hello World !" #! 是一個約定的標記,它告訴系統這個腳本需要什麼解釋器來執行,即使用哪一種 Shell。 echo 命令用於向窗口輸出文本。 二.運行 Shell 腳本有兩種方法: 1、作爲可執行程序 將上面的代碼保存爲 test.sh,並 cd 到相應目錄: chmod +x ./test.sh
相關文章
相關標籤/搜索