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

📄 ex19.sh

📁 Shall高级编程
💻 SH
字号:
#!/bin/bash# shft.sh: Using 'shift' to step through all the positional parameters#  Name this script something like shft.sh,#+ and invoke it with some parameters.#+ For example:#             sh shft.sh a b c def 23 skidoountil [ -z "$1" ]  # Until all parameters used up . . .do  echo -n "$1 "  shiftdoneecho               # Extra line feed.exit 0#  See also the echo-params.sh script for a "shiftless"#+ alternative method of stepping through the positional params.

⌨️ 快捷键说明

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