标签:html 模式匹配 uda snippet 运行 ash basename wrap bin
本文转载自:http://c.biancheng.net/cpp/view/7006.html
case 值 in 模式1) command1 command2 command3 ;; 模式2) command1 command2 command3 ;; *) command1 command2 command3 ;; esaccase工作方式如上所示。取值后面必须为关键字 in,每一模式必须以右括号结束。取值可以为变量或常数。匹配发现取值符合某一模式后,其间所有命令开始执行直至 ;;。;; 与其他语言中的 break 类似,意思是跳到整个 case 语句的最后。
Input a number between 1 to 4 Your number is:3 You select 3
$./test.sh test.sh: usage: [ -f filename ] | [ -d directory ] $ ./test.sh -f index.htm $ vi test.sh $ ./test.sh -f index.htm File name is index.htm $ ./test.sh -d unix Dir name is unix $
标签:html 模式匹配 uda snippet 运行 ash basename wrap bin
原文地址:http://www.cnblogs.com/zzb-Dream-90Time/p/7410755.html