#! /bin/sh if grep -q nmr /etc/group; then echo "group nmr already exists" ; else echo "creating group nmr" ; groupadd nmr || echo "failed!" fi