mirror of
https://github.com/wu736139669/SmallGame_Cocos2dx.git
synced 2026-08-05 06:23:09 +00:00
17 lines
194 B
Bash
Executable File
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
|