I am using Linux and intend to remove some files using shell.

I have some files in my folder, some filenames contain the word "good", others don't. For example:

ssgood.wmv
ssbad.wmv
goodboy.wmv
cuteboy.wmv

I want to remove the files that does NOT contain "good" in the name, so the remaining files are:

ssgood.wmv
goodboy.wmv

How to do that using rm in shell? I try to use

rm -f *[!good].*

but it doesn't work.

Thanks a lot!

link|improve this question

69% accept rate
2  
Do you mean "file names contain 'good'"? The example seems to indicate filenames, but you do say the "files contain the word"... – sarnold Jul 3 '11 at 9:50
File Names contain good. I am not a native speaker of English. Thanks 4 heads-up. – DocWiki Jul 3 '11 at 10:14
feedback

5 Answers

up vote 3 down vote accepted

This command should do what you you need:

ls -1 | grep -v 'good' | xargs rm -f

It will probably run faster than other commands, since it does not involve the use of a regex (which is slow, and unnecessary for such a simple operation).

link|improve this answer
+1. Actually, grep is both regex-powered and blindingly fast. – Alan Moore Jul 3 '11 at 10:32
1  
As-is this won't work because the ls command lists multiple filenames per line. You need to add the "-1" "one-file-per-line" option like so: ls -1 | grep ... – ridgerunner Jul 3 '11 at 13:52
Hmm... On my system ls always lists one file per line, so it worked perfectly. Strange, it's probably a default option somewhere. Anyway, I've added the -1 option so it will always work. – EdoDodo Jul 3 '11 at 13:54
@EdoDodo: You've probably got an alias ls='ls -1' command in one of your startup files. – ridgerunner Jul 3 '11 at 17:00
feedback

You can use find with the -not operator:

find . -not -iname "*good*" -a -not -name "." -exec rm {} \;

I've used -exec to call rm there, but I wonder if find has a built-in delete action it does, see below.

But very careful with that. Note in the above I've had to put an -a -not -name "." clause in, because otherwise it matched ., the current directory. So I'd test thoroughly with -print before putting in the -exec rm {} \; bit!

Update: Yup, I've never used it, but there is indeed a -delete action. So:

find . -not -iname "*good*" -a -not -name "." -delete

Again, be careful and double-check you're not matching more than you want to match first.

link|improve this answer
1  
Especially nice suggestion to use -print first. :) – sarnold Jul 3 '11 at 10:27
feedback

With bash, you can get "negative" matching via the extglob shell option:

shopt -s extglob
rm !(*good*)
link|improve this answer
feedback

see if you can use this post: Batch find & remove files on linux using find command problem

link|improve this answer
feedback
.*(!=good).*

This is called a negative look-ahead.

I'm not sure if it is supported in linux

link|improve this answer
"I'm not sure if it is supported in linux" Then......? – T.J. Crowder Jul 3 '11 at 10:36
1  
That wouldn't work even if you had the syntax right (it's ?!, not !=). You're probably thinking of ^(?!.*good).*$, but there's no need for such trickery when you can use grep -v or equivalent. – Alan Moore Jul 3 '11 at 10:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.