vote up 1 vote down star

I have a directory src/ that contain many .cc files and its binary. For example:

src/
  |_ foo.cc
  |_ bar.cc
  |_ qux.cc
  |_ thehead.hh
  |_ foo  (executable/binary)
  |_ bar  (executable/binary)
  |_ qux  (executable/binary)
  |_ makefile

In reality there are many .cc and executable files.

I need to remove those binaries in a global way without having to list all the files. Is there a fast and compact way to do it?

I tried:

$ rm *

but it removes all the files include .cc and .hh files.

I am aware of this command:

$ rm foo bar qux ....

but then we still have to list all the files one by one.

flag

8 Answers

vote up 7 vote down check

you can run

find . -perm +100 -type f -delete
link|flag
2  
Just for clarity, this only checks whether the user's exec bit is set, and it's using deprecated syntax. See man find for the gory details. – Matthew Flaschen May 13 at 7:14
vote up 5 vote down

I would rather go for a clean target in the Makefile. Most probably it already contains a list of these binaries, so adding a clean target would not require much effort.

link|flag
And it's safer. Just think about what happens if you use one of the other grep'ish solutions and someone decides that it would be a good idea to have a "README" file ;-) – lothar May 13 at 22:32
vote up 2 vote down

i suggest using first

find . -not -name "*.*" -exec ls -l {} \;

to see the name of files that are matched.

and then, change the ls -l to rm

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

also, you can use a confirm prompt to make it more safe:

find . -not -name "*.*" -exec rm -i {} \;
link|flag
vote up 3 vote down
find . -perm /ugo+x -delete

Corrected version of Stephan202's first command.

EDIT: Also try:

find . -perm /111 -delete

which uses the octal equivalent

link|flag
@Matt: under MacOsX, I get this: find: -perm: /ugo+x: illegal mode string – neversaint May 13 at 9:02
Try the octal version. – Matthew Flaschen May 13 at 22:07
vote up 3 vote down

Use find to remove all files (not folders) that do not contain a dot characeter:

find . \! -name "*.*" -type f -exec rm {} \;
link|flag
vote up 1 vote down

Instead of passing -exec rm '{}' \; to find one can use -delete arg.

link|flag
vote up 3 vote down

Use the find. What you want is this:

find . -executable -exec rm '{}' \;

Removing everything without an extension can also be done:

find . -not -iname "*.*" -exec rm '{}' \;

The former option does not delete the Makefile, and is thus to be preferred. I think kcwu's answer shows a nice way to improve the above using the -delete option :

find . -executable -delete
find . -not -iname "*.*" -delete


Edit: I use GNU findutils find, version 4.4.0, under Ubuntu 8.10. I was not aware the -executable switch is so uncommon.

link|flag
@Stephan: I got "find: -executable: unknown option" – neversaint May 13 at 7:06
What find are you using? -executable doesn't work for me. However, I can do use -perm /ugo+x with GNU find. – Matthew Flaschen May 13 at 7:10
@foolishbrat: perhaps you're using an older option of find. Try kcwu's answer. – Stephan202 May 13 at 7:10
@Matthew: I updated the answer. I suppose most alternatives to -executable are more portable. – Stephan202 May 13 at 7:16
Interesting. I'm using Ubuntu 8.04 (only one version behind, albeit LTS). – Matthew Flaschen May 13 at 8:31
vote up 4 vote down

Here you go:

ls | grep -v "\." | xargs rm

The grep -v says "only allow filenames that don't contain a dot", and the xargs rm says "then pass the list of filenames to rm".

link|flag
@Richie: thanks. Is there a way to exclude "makefile"? Which we want to keep. – neversaint May 13 at 7:04
@foolishbrat: Just add another grep: ls | grep -v "\." | grep -v makefile | xargs rm – RichieHindle May 13 at 7:51

Your Answer

Get an OpenID
or

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