看了前一个同学的才知道 if与[
[和 "$test" 是有空格的。
我说怎么老是错误呢!
加油加油 作为一个这菜鸟努力
[和 "$test" 是有空格的。
我说怎么老是错误呢!
加油加油 作为一个这菜鸟努力
2015-08-17
#!/bin/bash
test=$(env|grep "USER"|cut -d "=" -f 2)
if [ "$test"=="root" ]
then
echo "current user is root"
fi
test=$(env|grep "USER"|cut -d "=" -f 2)
if [ "$test"=="root" ]
then
echo "current user is root"
fi
2015-08-17
EQual
Not Equal
Greater Than
Less Than
Greater Equal
Less Equal
Not Equal
Greater Than
Less Than
Greater Equal
Less Equal
2015-08-10