When used with [[, the < and > operators sort lexicographically using
the current locale. The test command sorts using ASCII ordering.
-a file
True if file exists.
-b file
True if file exists and is a block special file.
-c file
True if file exists and is a character special file.
-d file
True if file exists and is a directory.
-e file
True if file exists.
-f file
True if file exists and is a regular file.
-g file
True if file exists and is set-group-id.
-h file
True if file exists and is a symbolic link.
-k file
True if file exists and its ``sticky'' bit is set.
-p file
True if file exists and is a named pipe (FIFO).
-r file
True if file exists and is readable.
-s file
True if file exists and has a size greater than zero.
-t fd True if file descriptor fd is open and refers to a terminal.
-u file
True if file exists and its set-user-id bit is set.
-w file
True if file exists and is writable.
-x file
True if file exists and is executable.
-G file
True if file exists and is owned by the effective group id.
-L file
True if file exists and is a symbolic link.
-N file
True if file exists and has been modified since it was last
read.
-O file
True if file exists and is owned by the effective user id.
-S file
True if file exists and is a socket.
...作者: sync_1521 时间: 2016-01-05 11:57
试试SHLIST=`ls 2|tee -a /var/log` 不过最好还是像楼上所说的check file before using作者: 螃蟹009 时间: 2016-01-05 12:42 回复 5# sync_1521