如题所述
代码如下:
#!/bin/bash
read -p "请输入字符串:" str
if [ "$str" = "hello" ]; then
echo "worl"
fi
可以将代码保存为 test.sh,然后添加权限:chmod +x test.sh,再执行:./test.sh
代码截图