Skip to content

Instantly share code, notes, and snippets.

@priteau
Created March 12, 2013 19:47
Show Gist options
  • Select an option

  • Save priteau/5146340 to your computer and use it in GitHub Desktop.

Select an option

Save priteau/5146340 to your computer and use it in GitHub Desktop.
A collection of FutureGrid scripts
#!/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