自己寫吧!Hello,Bash:echo
Last updated
Last updated
寫任何程式語言的第一個入門,都是 say hello
進入Bash shell命令行,輸入
把上述命令寫成可執行檔,並以.sh為結尾,如hello.sh
chmod +x hello.sh
執行 ./hello.sh
在Windows上編輯script,這將產生Bash無法處理的不正確的行尾字符,一個常見的症狀是: command not found,此時需要安裝dos2unix,可以使用dos2unix程序修復script
格式: echo -e "\033[字背景顏色;文字顏色m 字串 \033[0m"
最後面控制選項說明
\33[0m 關閉所有屬性 \33[1m 設置高亮度 \33[4m 下劃線 \33[5m 閃爍 \33[7m 反顯 \33[8m 消隱 \33[30m -- \33[37m 設置前景色 \33[40m -- \33[47m 設置背景色 \33[nA 光標上移n行 \33[nB 光標下移n行 \33[nC 光標右移n行 \33[nD 光標左移n行 \33[y;xH設置光標位置 \33[2J 清屏 \33[K 清除從光標到行尾的內容 \33[s 保存光標位置 \33[u 恢復光標位置 \33[?25l 隱藏光標 \33[?25h 顯示光標