Unix SunOS 5.9 中 switch 语句的语法?

Unix SunOS 5.9 中 switch 语句的语法?

我一直在寻找 Unix SunOS 的 switch 语句的正确语法。看来我运气不好,有人能发个例子吗?

答案1

在 bash 中有 case 语句

case string1 in
str1)
   commands;;
str2)
   commands;;
*)
   commands;;
esac

答案2

bash 中的 switch 语句称为casehelp case有关详细信息,请参阅。

case "$1" in
  -p) echo 'Hello, world!' ; exit 0 ;;
  -h|*) usage ; exit 1 ;;
esace

相关内容