Shell Script - for 用法說明
原始討論
原始討論「回覆: 「set –」的用法?」
回覆內容
執行
$ help for
顯示
for: for NAME [in WORDS ... ] ; do COMMANDS; done
Execute commands for each member in a list.
The `for' loop executes a sequence of commands for each member in a
list of items. If `in WORDS ...;' is not present, then `in "$@"' is
assumed. For each element in WORDS, NAME is set to that element, and
the COMMANDS are executed.
Exit Status:
Returns the status of the last command executed.
look
If `in WORDS ...;' is not present, then `in "$@"' is
assumed.