Tagged Questions
1
vote
1answer
99 views
Speeding a find rm command with test through parallelization
I want to recursively delete all files in directories and subdirectories with number of lines less than 10, and am currently using the following command
find . -type f -name "*.txt" | while read; do ...