2023-09-10, 06:21 AM
$ find /data/download/48E1 -name \*.jpg -type f -exec rm -f {} \;
$ find /data/download/48E1 -name \*.jpeg -type f -exec rm -f {} \;
$ find /data/download/48E1 -name \*.png -type f -exec rm -f {} \;
$ find /data/download/48E1 -name \*.PNG -type f -exec rm -f {} \;
$ find /data/download/48E1 -name \*.JPG -type f -exec rm -f {} \;
$ find /data/download/48E1 -name \*.JPEG -type f -exec rm -f {} \;
How-To write on 1 line?
$ find /data/download/48E1 -name \*.jpeg -type f -exec rm -f {} \;
$ find /data/download/48E1 -name \*.png -type f -exec rm -f {} \;
$ find /data/download/48E1 -name \*.PNG -type f -exec rm -f {} \;
$ find /data/download/48E1 -name \*.JPG -type f -exec rm -f {} \;
$ find /data/download/48E1 -name \*.JPEG -type f -exec rm -f {} \;
How-To write on 1 line?