Created
March 12, 2013 19:47
-
-
Save priteau/5146340 to your computer and use it in GitHub Desktop.
A collection of FutureGrid scripts
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/sh | |
| ALL_USERS=`nimbus-list-users % | awk '/display name/ { print $4; }'` | |
| for user in $ALL_USERS; do | |
| if ! id $user > /dev/null 2>&1; then | |
| echo "$user" | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment