funparas.ksh
来自「Solaris环境下Shell编程编程」· KSH 代码 · 共 17 行
KSH
17 行
#!/bin/ksh# Script name: funparas.kshfunction hello{ print '$1 in the function is: ' $1}print 'Input passed and stored in $1 is: ' $1hello John # execute the function helloprintprint 'After the function $1 is still ' $1
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?