#!/bin/bash # Add local user to appropriate (?) groups in Debian Woody # 2003-03-02, LTu if [ $# -eq 1 -a $1 != "" ] then usermod -g $1 -G cdrom,floppy,audio,dialout,dip,src,staff,users $1 else echo "Usage: $0 username" fi