https://github.com/cran/lmtest
Raw File
Tip revision: 4a8e1024cec4a5e5c010dd2f36ce5ec60be02334 authored by Torsten Hothorn on 08 August 1977, 00:00:00 UTC
version 0.2-2
Tip revision: 4a8e102
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 ./tests/*.ps; do
    rm -f $f
done

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

exit 0
back to top