2 # List all contestants according to $CT_USER_LIST
4 if [ "$1" = --help ] ; then
5 echo "Usage: mo-get-users [--full]"
7 [ -f cf/mop ] || { echo "Missing config file, check cwd." ; exit 1 ; }
11 if [ "$1" = --full ] ; then
12 cut -d ' ' -f 1,2 <$CT_USER_LIST
14 cut -d ' ' -f 1 <$CT_USER_LIST