Wednesday 21 September 2022

How to delete files in a folder if the list is too long?

sudo find . -name '*.jpg' -type f -delete

sudo find . -name "0016*" -type d -exec rm -rf {} +

No comments:

Post a Comment