Merge pull request #52 from redroc/master

really remove the files
pull/53/head
Igor Chubin 5 years ago committed by GitHub
commit b3ffdb2c76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,7 +5,7 @@ find -name \*.pdf | xargs rm
# (bulletproof version: handles filenames with \n and skips *.pdf directories)
# -r = --no-run-if-empty
# -n10 = group by 10 files
find -name \*.pdf -type f -print0 | xargs -0rn10
find -name \*.pdf -type f -print0 | xargs -0rn10 rm
# if file name contains spaces you should use this instead
find -name \*.pdf | xargs -I{} rm -rf '{}'

Loading…
Cancel
Save