本文共 179 字,大约阅读时间需要 1 分钟。
#!/bin/bash
function ergodic(){
for file in ` ls $1 `
do
if [ -d $1"/"$file ]
then
ergodic $1"/"$file
else
echo $1"/"$file
fi
done
}
INIT_PATH="/data/beeae_dev"
ergodic $INIT_PATH
转载地址:http://rkuta.baihongyu.com/