Answers for "sudo rm all files in directory with specific extension"

0

remove all files with no extention rm

find . -type f  ! -name "*.*"  -delete
Posted by: Guest on May-07-2020
0

linux remove all files same extension in directory

find . -type f -iname \*.zip -delete
Posted by: Guest on October-13-2020

Code answers related to "sudo rm all files in directory with specific extension"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language