Created
January 25, 2012 15:52
-
-
Save qoobaa/1676895 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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