print contents of all files and within child folders
@nekomimi.pet · 18d ago · plaintext · 6 loc · raw · 0 comments
1find . -type f -print0 | sort -z | \2while IFS= read -r -d '' f; do3 printf "==> %s <==\n" "$f"4 cat -- "$f"5done6
login to post a comment