runit

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

TXT
19
字号
#/bin/sh# Script is called runit.# IFS is the internal field separator and defaults to # spaces, tabs, and newlines. # In this script it is changed to a colon.names=Tom:Dick:Harry:JohnOLDIFS="$IFS"  # Save the original value of IFSIFS=":"for persons in $namesdo	echo  Hi $personsdoneIFS="$OLDIFS"            # Reset the IFS to old valueset Jill Jane Jolene     # Set positional parametersfor girl in $*do	echo Howdy $girldone

⌨️ 快捷键说明

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