I'm looking for a Linux command to move files from a directory to another, but only if their file name doesn't end with .zip.
Linux
.zip
Is their a command like: mv ~/Folder1/!*.zip ~/Folder2/?
mv ~/Folder1/!*.zip ~/Folder2/
Try this:
mv $(ls ~/Folder1/ |grep -v "zip$" ) ~/Folder2/