Delete all the .jpg files in all directories below the current (See related posts)

// Delete all the .jpg files in all directories below the current
find /PATH/TO/STARTING/DIRECTORY  -type f -name "*.jpg" -delete

You need to create an account or log in to post comments to this site.


Related Posts