# non-commercial use provided that this notice appears in
# all copies of the file. There is no warranty, either
# expressed or implied, supplied with this code.
#
case $# in
1 ) cat >> $1 ;;
2 ) cat $1 >> $2 ;;
* ) echo "Usage: append [fromfile] tofile" 1>&2 ;;
esac