I've renamed some files in a fairly large project and want to remove the .pyc files they've left behind. I tried the bash script:

 rm -r *.pyc

But that doesn't recurse through the folders as I thought it would, what am I doing wrong?

Thanks

link|improve this question

Try the -v (verbose) option -- that'll tell you what's going on. – dirkgently Apr 24 '09 at 11:54
It tells me what it removes but not why it won't do what I want. – Teifion Apr 24 '09 at 12:18
1  
It doesn't work because in UNIX, globs are expanded by the shell, not by the program being run. If you have a.pyc and b.pyc in the current directory, and directories foo and bar, rm will be called with arguments [-r, a.pyc, b.pyc]. – ephemient Apr 24 '09 at 19:34
feedback

7 Answers

up vote 68 down vote accepted
find . -name "*.pyc" -exec rm -rf {} \;
link|improve this answer
Nothing appears to be happening. – Teifion Apr 24 '09 at 12:01
2  
Perhaps it should be -name "*.pyc" instead of -name ".pyc"? That worked for me. – Chris Lutz Apr 24 '09 at 12:05
Thanks Chris, that fixed it. I deleted *.svn in a script I use all the time and replaced it with .pyc originally. My mistake. – Bill the Lizard Apr 24 '09 at 12:10
Accepted this one over the other one (which was previously accepted) as it's shorter and now works :) – Teifion Apr 24 '09 at 12:17
15  
Find has a builtin "-delete" action, so you could do just find . -name \*.pyc -delete – Christoffer May 29 '09 at 11:48
show 4 more comments
feedback
find . -name '*.pyc' -delete

Surely the simplest?

link|improve this answer
3  
Didn't know about -delete : +1 – yangyang May 29 '09 at 11:51
This one makes the most sense, thanks! :) – PKKid Jul 2 '09 at 3:44
12  
+1. This command feels much safer than the currently accepted one by Bill the Lizard. Any command with rm -rf in it is a little scary. :) – Rudd Zwolinski Mar 17 '10 at 20:19
feedback

if you're using bash >=4.0 (or zsh)

rm **/*.pyc

(the globstar shell options must be enabled)

link|improve this answer
feedback
find . -name '*.pyc' -print0 | xargs -0 rm

The find recursively looks for *.pyc files. The xargs takes that list of names and sends it to rm. The -print0 and the -0 tell the two commands to seperate the filenames with null characters. This allows it to work correctly on files containing spaces, and even a file containing a new line.

The solution with -exec works, but it spins up a new copy of rm for every file. On a slow system or with a great many files, that'll take too long.

You could also add a couple more args:

find . -iname '*.pyc' -print0 | xargs -0 --no-run-if-empty  rm

iname adds case insensitivity, like *.PYC . The no-run-if-empty keeps you from getting an error from rm if you have no such files.

link|improve this answer
feedback

Just to throw another variant into the mix, you can also use backquotes like this:

rm `find . -name *.pyc`
link|improve this answer
1  
Bash is so versatile, and amazing. :) – PKKid Jul 2 '09 at 3:44
feedback
$ which pycclean

pycclean is aliased to `find . -name "*.pyc" | xargs -I {} rm -v "{}"'
link|improve this answer
I really didn't know about this command... so cool, thanks a lot – Igor Popov Jan 19 '11 at 22:25
feedback

rm -r recurses into directories, but only the directories you give to rm. It will also delete those directories. One solution is:

for i in $( find . -name *.pyc )
do
  rm $i
done

find will find all *.pyc files recursively in the current directory, and the for loop will iterate through the list of files found, removing each one.

link|improve this answer
This one works though I have to put it in a .sh file and run that (which is fine by me, I'll be using this command more than once) – Teifion Apr 24 '09 at 12:03
I believe putting it all on one line separated with ';'s should let you run it at the shell. But when I type that in bash, bash waits for the "done" at the end to execute anything... – Chris Lutz Apr 24 '09 at 12:08
feedback

Your Answer

 
or
required, but never shown

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