https://github.com/cran/lmtest
Raw File
Tip revision: 6309a99fadf62a57b1eab63c8a76805a31f2989a authored by Achim Zeileis on 19 February 2003, 00:00:00 UTC
version 0.9-3
Tip revision: 6309a99
cleanup
#!/bin/bash

for f in ./R/*~; do
    rm -f $f
done

for f in ./man/*~; do
    rm -f $f
done

for f in *~; do
    rm -f $f
done

for f in ./tests/*~; do
    rm -f $f
done

for f in ./src/*~; do
    rm -f $f
done

for f in ./src/*.*o; do
    rm -f $f
done

for f in ./tests/*.ps; do
    rm -f $f
done

find . -name "DEADJOE" -exec rm -f {} \;

exit 0
back to top