⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex26.sh

📁 Shall高级编程
💻 SH
字号:
#!/bin/bashecho                               # Equivalent to:while [ "$var1" != "end" ]     # while test "$var1" != "end"do  echo "Input variable #1 (end to exit) "  read var1                    # Not 'read $var1' (why?).  echo "variable #1 = $var1"   # Need quotes because of "#" . . .  # If input is 'end', echoes it here.  # Does not test for termination condition until top of loop.  echodone  exit 0

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -