https://github.com/cran/mvtnorm
Raw File
Tip revision: 5aceb04d886a8f0b76b661908d92d383fcbe01ed authored by Torsten Hothorn on 19 January 2012, 00:00:00 UTC
version 0.9-9992
Tip revision: 5aceb04
cleanup
#!/bin/sh

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

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


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

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


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

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

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

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

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

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

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

exit 0
back to top