17 lines
338 B
Bash
Executable File
17 lines
338 B
Bash
Executable File
#!/bin/sh
|
|
rm -rf */OBJ */*/OBJ libs/* incs/*
|
|
rm -f core */core */*/core
|
|
rm -f .EDT* */.EDT* */*/.EDT*
|
|
rm -f .vedt* */.vedt* */*/.vedt*
|
|
rm -f *.bak */*.bak */*/*.bak
|
|
rm -f */tags */*/tags
|
|
rm -f */TAGS */*/TAGS
|
|
rm -rf proto/* packages/*
|
|
|
|
if [ -f .links ]; then
|
|
rm -f `cat .links`
|
|
fi
|
|
|
|
find . -name '*.[1-9].html' -perm -u=rw -exec rm {} +
|
|
|