You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
329 B
17 lines
329 B
9 years ago
|
#!/bin/bash
|
||
|
function ergodic(){
|
||
|
for file in `ls $1`
|
||
|
do
|
||
|
if [ "$file" != "app" -a -d $1"/"$file ]
|
||
|
then
|
||
|
ergodic $1"/"$file
|
||
|
else
|
||
|
local path=$1"/"$file
|
||
|
echo $path
|
||
|
fi
|
||
|
done
|
||
|
}
|
||
|
|
||
|
IFS=$'\n' #这个必须要,否则会在文件名中有空格时出错
|
||
|
INIT_PATH=".";
|
||
|
ergodic $1
|