busybox的ash,實現遍歷文件夾,過濾文件

busybox的ash,不支持function關鍵字
web

#!/bin/sh
ergodic(){
for file in ` ls $1 `
do
if [ -d $1"/"$file ];then
ergodic $1"/"$file
elif (echo $1/$file | grep -q '.mp4$');then
echo $file
fi
done
}

INIT_PATH="/web"
ergodic $INIT_PATH
相關文章
相關標籤/搜索