busybox的ash,实现遍历文件夹,过滤文件

busybox的ash,不支持function关键字

#!/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


你可能感兴趣的:(busybox的ash,实现遍历文件夹,过滤文件)