shell
CtrlK
  • shell - 简介
  • shell - 变量
  • shell - 运算符
    • 算术运算符
    • 关系运算符
    • 逻辑运算符
    • 字符串运算符
    • 文件测试运算符
  • shell - 浮点数运算
  • shell - 函数
  • shell - 判断
    • if-else
    • case
  • shell - 循环
    • for循环
    • while循环
  • shell - 参数传递
  • shell - 数组
  • shell - 字符串
  • shell - 浮点数运算
  • shell-编程常用命令
  • 实践
    • docker-rmi
    • save-image
  • ssh远程命令
Powered by GitBook
On this page

Was this helpful?

  1. shell - 判断

case

case的语法结构为

case value in
    value1)
        # action
        ;;
    value2)
        # action
        ;;
    *)
        # action
        ;;
esac
Previousif-elseNextshell - 循环

Last updated 5 years ago

Was this helpful?