ex34.sh

来自「Shall高级编程」· Shell 代码 · 共 31 行

SH
31
字号
#!/bin/bash# script "set-test"# Invoke this script with three command line parameters,# for example, "./set-test one two three".echoecho "Positional parameters before  set \`uname -a\` :"echo "Command-line argument #1 = $1"echo "Command-line argument #2 = $2"echo "Command-line argument #3 = $3"set `uname -a` # Sets the positional parameters to the output               # of the command `uname -a`echo $_        # unknown# Flags set in script.echo "Positional parameters after  set \`uname -a\` :"# $1, $2, $3, etc. reinitialized to result of `uname -a`echo "Field #1 of 'uname -a' = $1"echo "Field #2 of 'uname -a' = $2"echo "Field #3 of 'uname -a' = $3"echo ---echo $_        # ---echoexit 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?