Linux command to delete file excluding some file using find By EDI Rabu, 11 Oktober 2017 Q: How to delete all file with exlcuding some file in a regex in linux? A: Use find command, here the command $ find . \( -name "*.po" \! -name id.po \) -delete
Tambahkan Komentar