#!/bin/sh

if [ "x$@" = "x" ]; then

  cat >> $MNG_ROOT/data/good.guys.list

else

  echo $@ >> $MNG_ROOT/data/good.guys.list

fi
