递归查找目录中指定文件
find(){
for file in `ls $1`
do
if [ -d $1"/"$file ]
then
read_dir $1"/"$file
else
if [ "$targetfile" = "$file" ]
then
echo $1"/"$file
fi
fi
done
}
targetfile="a.py"
find /home
targetfile:
要查找的文件名
/home:
要查找的路径
Tips:dash: 只支持=
执行窗体显示的*.sh不要加 sudo