Search Results

10
votes

How do you use cat recursively?

Try using the find command, which recurses directories by default: find . -type f -execdir cat {} \; | wc -l …