Answers for "remove files with no extensions linux"

6

rm files with extension

find . -name "*.bak" -type f -delete
Posted by: Guest on September-09-2020
0

linux remove all files same extension in directory

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

remove all files with no extention rm

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

Code answers related to "remove files with no extensions linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language