📄 runit
字号:
#!/bin/ksh# 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 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -