shell编程 case语句
生活随笔
收集整理的這篇文章主要介紹了
shell编程 case语句
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
case語句格式
case 語句如果某個選項沒有任何語句,也要加;;否則會出下邊錯誤
test: line 166: syntax error near 《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀
| # vi test.sh : echo "input : " read num echo "the input data is $num" case $num in 1) echo"January";; 雙分號結束 2) echo "Feburary";; 5) echo"may" 每個case可以有多條命令 echo "sdfd" echo"sdf";; 但最后一條命令一定是雙分號結束 *) echo "not correct input";; *)是其他值、default的意思 esac |
| # sh ./test.sh input : 2 the input data is 2 Feburary # sh ./test.sh input : ter the input data is ter not correctinput |
case 語句如果某個選項沒有任何語句,也要加;;否則會出下邊錯誤
test: line 166: syntax error near 《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀
總結
以上是生活随笔為你收集整理的shell编程 case语句的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: shell 循环判断语法
- 下一篇: 各种排序算法的讲解与代码实现