Skip to content

Instantly share code, notes, and snippets.

@qoobaa
Created January 25, 2012 15:52
Show Gist options
  • Save qoobaa/1676895 to your computer and use it in GitHub Desktop.
Save qoobaa/1676895 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ $# -ne 1 ]; then
echo "Zla liczba argumentow"
else
for user in `who | cut -d' ' -f1 | uniq`; do
for group in `groups $user`; do
if [ $group == $1 ]; then
echo $user
fi
done
done
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment