https://github.com/cran/mvtnorm
Raw File
Tip revision: ca4c5cb4d350b549a1e06df27cd97bc7ecc81f9e authored by Torsten Hothorn on 29 August 2005, 00:00:00 UTC
version 0.7-2
Tip revision: ca4c5cb
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