首先,在shell中使用test命令和[]效果是一样的,比如:
if test -e file_name
then
do something
和 if [ -e file_name ]
then
do something
这两者是完全等价的
http://www.runoob.com/linux/linux-shell-test.html
首先,在shell中使用test命令和[]效果是一样的,比如:
if test -e file_name
then
do something
和 if [ -e file_name ]
then
do something
这两者是完全等价的
http://www.runoob.com/linux/linux-shell-test.html