首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

redhat 六 判断字符 -bash: aa=aa: command not found

2014-01-17 
redhat 6 判断字符 -bash: aaaa: command not found这是啥问题??一下午各种google没搞定,前来求解脱.[解

redhat 6 判断字符 -bash: aa=aa: command not found
redhat 六 判断字符 -bash: aa=aa: command not found

这是啥问题??一下午各种google没搞定,前来求解脱.
redhat 六 判断字符 -bash: aa=aa: command not found
[解决办法]


if [ "aa" = "aa" ];then echo yeah; fi;

上面不行那你把下面的写到脚本,执行脚本试试

#!/bin/sh
if [ "aa" = "aa" ]
then
echo yeah
fi

热点排行