ex36.sh
来自「Shall高级编程」· Shell 代码 · 共 24 行
SH
24 行
#!/bin/bash# "Reading" variables.echo -n "Enter the value of variable 'var1': "# The -n option to echo suppresses newline.read var1# Note no '$' in front of var1, since it is being set.echo "var1 = $var1"echo# A single 'read' statement can set multiple variables.echo -n "Enter the values of variables 'var2' and 'var3' "echo =n "(separated by a space or tab): "read var2 var3echo "var2 = $var2 var3 = $var3"# If you input only one value,#+ the other variable(s) will remain unset (null).exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?