目录
- 使用场景
- 代码
使用场景
根据用户不同的输入执行不通的逻辑,要求当用户输入完成,点击键盘Enter按键的时候读取用户的输入并做出逻辑判断
代码
while :
doecho "Do you want to continue with the installation? [yes|no]"read INPUTecho $INPUTif [[ ${INPUT} == "yes" ]]; thenecho "begin installation"breakelif [[ ${INPUT} == "no" ]]; thenecho "installation aborted"exit 0elseecho "Please enter yes or no"fi
done
~
代码解读:“exit 0” 是一个常见的Shell命令,它表示在命令执行成功后退出。数字0在Shell中通常代表成功,因此"exit 0"表示退出并返回成功状态。