Files
2014-08-20 16:15:02 +08:00

17 lines
194 B
Bash
Executable File

#!/bin/sh
echo sssss
DIRLIST=./
for DIR in `cat $DIRLIST`
do
if [[ ! -d $DIR ]]
echo 1
then
echo $DIR not exists
continue
fi
done