using bash on some recent version of cygwin build:
- ufind -name \*.class > x
- rm `cat x`
- rm `cat x`
was, say, 50 meg or something. but 49k is not unreasonable.
short of fixing bash, perhaps a parameter to rm which says the following file is
a list of files to be removed:
- rm -l x
this would be more efficient, anyway. what i do now is horribly inefficient:
- ufind -name \*.class -exec rm \{} \;