Use find
command to find all of the files first
find . -name '*.jpg
If the files shown are exactly the ones that you want, you can delete them with the following command:
find . -name '*.orig' #-delete
Use find
command to find all of the files first
find . -name '*.jpg
If the files shown are exactly the ones that you want, you can delete them with the following command:
find . -name '*.orig' #-delete