Cat files in current folder and all sub-folders [duplicate]: Recursively printing all the files in present and sub directories:
$ find . -type f -exec cat {} + $ cat */* $ cat * */* */*/* $ find . -name '*.txt' -exec cat {} \;
#Dir list $ find $pwd
Fore more visit.... https://youtu.be/sxL-GCGjf3w












