2011-04-28 17:07:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Steven Armstrong
|
|
|
|
# Nico Schottelius
|
|
|
|
#
|
2011-04-28 17:06:00 +00:00
|
|
|
|
2011-04-28 17:07:29 +00:00
|
|
|
DIR="$1"
|
2011-04-28 17:06:00 +00:00
|
|
|
|
|
|
|
[ -z "${DIR}" ] && DIR="${PWD}"
|
|
|
|
|
|
|
|
DIR="${DIR%/}"
|
|
|
|
|
|
|
|
if ! [ -d "${DIR}" ]; then
|
|
|
|
echo "cannot access ${DIR}: No such file or directory" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2011-04-28 17:07:29 +00:00
|
|
|
rm "${DIR}"/*.{aux,nav,out,toc,snm,log,vrb}
|