Linux:编写一个脚本,让用户自己输入字符串,如果用户输入的是hello,请打印worl?

如题所述

代码如下:

#!/bin/bash

read -p "请输入字符串:" str

if [ "$str" = "hello" ]; then

        echo "worl"

fi

可以将代码保存为 test.sh,然后添加权限:chmod +x test.sh,再执行:./test.sh


代码截图

温馨提示:答案为网友推荐,仅供参考
相似回答