#!/bin/sh if [ $# -eq 0 ]; then exec id -Gn fi while [ $# -gt 0 ]; do printf '%s : ' $1 id -Gn $1 shift done