(shell)Show all the files in folders and subfolders
摘要:
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" ... 阅读全文
posted @ 2018-01-23 17:12 cdekelon 阅读(185) 评论(0) 推荐(0) 编辑