for d in ./*; do
  if [ -d "$d" ]; then
     for e in $d/*;do
        if [ -d "$e" ]; then
            find "$e" -type f -print
        fi
     done
  fi
done

  

 

for d in ./*; do
  if [ -d "$d" ]; then
#     echo "$d"
     for e in $d/*;do
        if [ -d "$e" ]; then
            #find "$e" -type f -print
            aa=`find "$e" -type f -print`
            echo $aa
        fi
     done
  fi
done

  

相关文章:

  • 2022-12-23
  • 2021-06-06
  • 2021-10-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-13
  • 2022-12-23
猜你喜欢
  • 2021-10-18
  • 2021-08-24
  • 2022-02-07
  • 2021-08-31
  • 2021-12-13
  • 2022-12-23
  • 2021-08-15
相关资源
相似解决方案