I have a list of extensions avi,mkv,wmv,mp4,mp5,flv,M4V,mpeg,mov,m1v,m2v,3gp,avchd
I want to remove all files without the following extensions aswell as files without extension in a directory in linux.
How can I do this using the rm linux command?
|
I have a list of extensions avi,mkv,wmv,mp4,mp5,flv,M4V,mpeg,mov,m1v,m2v,3gp,avchd I want to remove all files without the following extensions aswell as files without extension in a directory in linux. How can I do this using the rm linux command?
| ||||
|
feedback
|
|
You will first have to find out files that do not contain those extension. You can do this very easily with the
You can also use It is good to do Deleting tons of files using this can be dangerous. Once deleted you can never get them back. So make sure you run the Good luck. Update: As stated in the comments by
| |||||||||||||
feedback
|
|
You can use a quick and dirty As others have suggested, you can use the Since you mention that you are on a Linux system I will use the GNU implementation that is part of the findutils package in my examples because it is the default on most Linux systems and is what I generally recommend learning since it has a much richer and more advanced set of features than many other implementations. Though it can be daunting and seemingly over-complicated it is worth spending time to master the Find ExamplePeople often suggest using the Before deleting files I recommend previewing the file list first (or at least part of the list if it is very long):
The above command will show you the list of files that you will be deleting. To actually delete the files you can simply add the
If you would like to see what will remain you can invert the matches in the preview by adding
The output of this inverse match should be the same as the output you will see when listing the files after performing the delete unless errors occurred due to permissions problems or unwritable filesystems:
ExplanationHere I will explain in some depth the options I chose and why: I added I use the case-insensitive You'll probably want to use extend POSIX regular expressions for simplicity and brevity. Unfortunately there is not yet a short-hand for The The Alternate find ImplementationsEven though you said you're on a Linux system I will also mention the differences that you'll encounter with the BSD implementations which includes Mac OS X! For other systems (like older Solaris boxes), good luck! Upgrade to one of the more modern The main difference in this example is regarding regular expressions. The BSD variants use basic POSIX regular expressions by default. To avoid burdensome extra escaping in regexes required for basic-PRE you can take advantage of more modern features of extended-PRE by specifying the
Note in this case that the It is too bad that GNU does not yet provide a rm - Not RecommendedThough I strongly recommend against using Assuming you use a shell with Bourne syntax (which is usually what you find on Linux system which default to the Bash shell) you can use this command:
If you use Bash and have extended globbing turned on with
The However, I strongly recommend against using It is error-prone and dangerous because it is easy to accidentally put a space between the It is non-portable because even if it happens to work in your particular shell, the same command line may not work in other shells (including other Bourne-shell variants if you are prone to using Bash-isms). It has severe limitations because if you have files that are nested in subdirectories or even just lots of files in a single directory, then you will quickly hit the limits on command line length when using file globbing. I wish the | ||||
|
feedback
|
|
Learn how to use the find command | |||
feedback
|