This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/misc/cleandist.sh

8 lines
221 B
Bash
Raw Normal View History

#!/bin/sh
find . -name CVS -print | xargs rm -rf
find . -name .cvsignore -print | xargs rm -f
find . -name '.#*' -print | xargs rm -f
find . -name .DS_Store -print | xargs rm -f
find . -name '.gdb*' -print | xargs rm -f