Advertisement
ghiwar

Delete all but 1000 random files in a directory sort reverse

May 19th, 2019
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.06 KB | None | 0 0
  1. find -type f -print0 | sort -z1 | tail -zr +3 | xargs -0 rm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement