Revision 09932e80788e5330e2170e102407c3c57b096010 authored by Torsten Hothorn on 19 January 2016, 17:03:55 UTC, committed by cran-robot on 19 January 2016, 17:03:55 UTC
1 parent 03e1836
Raw File
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 {} \;

find . -name "mvtnormAPI*gz" -exec rm -f {} \;

find . -name "mvtnormAPI.Rcheck" -exec rm -rf {} \;

exit 0
back to top