码迷,mamicode.com
首页 > 其他好文 > 详细

[: 11: y: unexpected operator问题

时间:2018-01-03 22:31:11      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:you   文件名   path   oca   user   usr   lease   targe   ogr   

《私房菜》上的shell脚本问题:

转载:[: 11: y: unexpected operator问题

脚本如下:%

 

#!/bin/bash
# Program:
#    This program shows the users choice
# History:
#2018/01/03
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin& 
export PATH

read -p "Please input (Y/N): " yn
[ "$yn" == "Y" -o "$yn" == "y" ] &&echo "OK, continue" && exit0
[ "$yn" == "N" -o "$yn" == "n" ] &&echo "Oh, interrupt!" && exit0
echo "I don‘t know what your choice is"&& exit 0

 

执行时总提示错误9

 

Please input (Y/N): y
[: 10: y: unexpected operator
[: 11: y: unexpected operator
I dont know what your choice is

 

因为ubuntu默认的sh是连接到dash的,又因为dash跟bash的不兼容所以出错了.执行时可以把sh换成bash文件名.sh来执行.成功.dash是什么东西,查了一下,应该也是一种shell,貌似用户对它的诟病颇多.
by the way修改sh默认连接到bash的一种方法:
sudo dpkg-reconfigure dash0 Q$ c+ `. U+ c2 K
选择no即可.

 

[: 11: y: unexpected operator问题

标签:you   文件名   path   oca   user   usr   lease   targe   ogr   

原文地址:https://www.cnblogs.com/winterfells/p/8185406.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!