Using aliases for them was cute, but it didn't work with things like: find -name '*.c' | xargs redo-ifchange since xargs doesn't know about aliases.
10 lines
226 B
Text
10 lines
226 B
Text
if [ -e .do_built ]; then
|
|
while read x; do
|
|
rm -f "$x"
|
|
done <.do_built
|
|
fi
|
|
[ -z "$DO_BUILT" ] && rm -rf .do_built .do_built.dir
|
|
redo t/clean
|
|
rm -f *~ .*~ */*~ */.*~ *.pyc
|
|
rm -rf t/.redo
|
|
find -name '*.tmp' -exec rm -fv {} \;
|