https://github.com/cran/mvtnorm
Raw File
Tip revision: 04977c6e2c3b555fc402cde1e3a59ca2be38fa0c authored by Torsten Hothorn on 03 June 2004, 00:00:00 UTC
version 0.6-8
Tip revision: 04977c6
cleanup
#!/bin/bash

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