#!/bash/bash
test=$(env |grep "USER" |cut -d "=" 2)
if("$test == "root")
then
echo "current user is root!"
fi
test=$(env |grep "USER" |cut -d "=" 2)
if("$test == "root")
then
echo "current user is root!"
fi
2015-08-02
if [ -n "$num1" -a -n "$num2" -a -n "$op" ]
shell编程类似的这种对于变量的判断一定要记得加双引号,虽然有时候显得没必要,但是在程序比较大时可能会因为这种小细节出错,这种问题应该调试半天也不一定能发现
shell编程类似的这种对于变量的判断一定要记得加双引号,虽然有时候显得没必要,但是在程序比较大时可能会因为这种小细节出错,这种问题应该调试半天也不一定能发现
2015-07-23