rm -r not working

Jonathan Kamens jik@curl.com
Tue Mar 20 10:24:00 GMT 2001


>  Date: Tue, 20 Mar 2001 09:42:15 -0800
>  From: "Primitive Guy" <efficacy@my-deja.com>
>  
>  I want to remove all my .class files in all sub-directories
>  starting from /dev/classes.
>  
>  classes $ rm -r *.class
>  rm: cannot remove `*.class': No such file or directory
>  
>  There are no .class files in /dev/classes but there are certainly
>  .class files in sub-directories of /dev/classes.
>  
>  what am I doing wrong?

Not understanding how wildcards work in Unix-like shells?  The Cygwin
bash shell works like Unix, not like DOS.

See questions 2.3 and 2.6 in
<URL: http://www.faqs.org/faqs/unix-faq/faq/part2/index.html >.

The summary is that you want to use:

        find /dev/classes -name '*.class' -exec rm {} \;

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple



More information about the Cygwin mailing list