https://github.com/cran/ipred
Raw File
Tip revision: 79c406d551eea2790c298403cb4496a08e85dc82 authored by Torsten Hothorn on 09 March 2023, 13:50:02 UTC
version 0.9-14
Tip revision: 79c406d
cleanup
#!/bin/sh

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

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

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

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

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

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

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

exit 0
back to top