dater

来自「UNIX[1].shell范例精解(第4版)_code」· 代码 · 共 12 行

TXT
12
字号
#!/bin/bash# Scriptname: dater# Purpose: set positional parameters with the set command # and shift through the parameters.set $(date)while (( $# > 0 )) # or  [ $# -gt 0 ]  Old styledo	echo $1	shift done

⌨️ 快捷键说明

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