#!/bin/sh
#
# Small shellscript that "cleans" LHEx ready for distribution.
#
# It:
#	o Removes all backup files
#	o Ensures nothing is group-writable
#	o Removes all byte-compiled modules
#
find -name '*~' -o -name '*.py[oc]'| xargs rm
chmod -R g-w *
# End.
