shell 变量比较时遇到的问题(unexpected operator) 的解决方法
程序员文章站
2024-03-17 17:10:10
...
#!/bin/bash
#Program
# This is a program shows the uer's choice
PATH=/bin:/sbin:/user/bin:/user/sbin:/user/local/bin:/user/local/sbin:~/bin
export PATH
read -p "Please input (Y/N): " chk
[ "$chk" == "Y" -o "$yn" == "y" ] && echo "OK, continue!" && exit 0
[ "$chk" == "N" -o "$yn" == "n" ] && echo "Oh, interrupt!" && exit 0
echo "I don't know what your choice is" && exit 0
运行报错
unexpected operator
解决办法有两种:
(1) 修改默认sh为bash
sudo dpkg-reconfigure dash
选NO
将ubuntu 默认的shell 链接的dash 改成传统的 bash
ll /bin/bash
lrwxrwxrwx 1 root root 4 8月 11 09:53 /bin/sh -> dash (为修改之前)
lrwxrwxrwx 1 root root 4 8月 11 09:53 /bin/sh -> bash
由于dash 和bash 不兼容才导致了此类问题的发生。。
(2):将==改成= :因为在dash 中默认的 判断语句是=。
对于具体的dash 和bash 都可以使用man 查到。
上一篇: JDBC连接使用基本步骤
下一篇: Java查找算法之顺序查找