📄 here-function.sh
字号:
#!/bin/bash# here-function.shGetPersonalData (){ read firstname read lastname read address read city read state read zipcode} # 这个函数看起来就是一个交互函数, 但是... # 给上边的函数提供输入.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 + -