#!/bin/bashecho "-----------------strat---------------"read -p "Enter a number:" value;if [[ $value -le 10 ]];thenecho "Enter the number is less than 10!";fi
在上面的代码中需要注意的问题是:
if [[ $value -le 10 ]]这段代码大括号跟变量之间需要保持空格
本文共 215 字,大约阅读时间需要 1 分钟。
#!/bin/bashecho "-----------------strat---------------"read -p "Enter a number:" value;if [[ $value -le 10 ]];thenecho "Enter the number is less than 10!";fi
在上面的代码中需要注意的问题是:
if [[ $value -le 10 ]]这段代码大括号跟变量之间需要保持空格
转载地址:http://ydsox.baihongyu.com/