#!/bin/sh

find ./ -type f -print | sed -e "/core/d" -e "/TAGS/d" -e "/src\/count/d" -e "/~/d" -e  "/#/d" -e "/\.o/d" -e "/future\//d" -e "/saved_/d"  -e "/maxobj.a/d" -e "/\/orig\//d" -e "/raw_/d" -e '/merge$/d' -e '/-$/d' -e '/\.fn$/d' -e '/\.ERR$/d'  -e '/\.err$/d'  -e '/foo/d'
echo ./doc/DOC
echo ./bin/fix-paths





