📄 here-function.sh
字号:
#!/bin/bash# here-function.shGetPersonalData (){ read firstname read lastname read address read city read state read zipcode} # This certainly looks like an interactive function, but...# Supply input to the above function.GetPersonalData <<RECORD001BozoBozeman2726 Nondescript Dr.BaltimoreMD21226RECORD001echoecho "$firstname $lastname"echo "$address"echo "$city, $state $zipcode"echoexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -