我有一个名为 displayArg.sh 的 shell 脚本,这就是我打算运行它的方式-
./displayArg hello
并输入输出arg is hello
以下是脚本——
if [ $1 == "" ]; then
default="Default"
echo "no value is given. Output is $default"
else
value=$?
echo "entered arg is $value" #I know I am wrong in these 2 lines, but not sure how to fix it
fi
请多多包涵。我是 Shell 脚本的新手