runit
来自「《PC数据采集》源代码」· 代码 · 共 23 行
TXT
23 行
#!/bin/ksh# Script name: runit# Example 10.117# 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 print Hi $personsdoneIFS="$OLDIFS" # reset the IFS to old valueset Jill Jane Jolene # set positional parametersfor girl in $*do print Howdy $girldone
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?