[test@localhost scripts]$ [ -n "$HOME" ] [test@localhost scripts]$ echo $? 0
g3110 2010-12-13 12:22:33 [test@localhost scripts]$ [ -n "$HOME" ]
[test@localhost scripts]$ echo $?
0 ##这个0是[ -n "$HOME" ]的返回值吗?
[test@localhost scripts]$ [ -n "$HOME" ] && echo "ture"
ture