Skip to content

Instantly share code, notes, and snippets.

@davidu
Created December 3, 2012 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidu/4195979 to your computer and use it in GitHub Desktop.
Save davidu/4195979 to your computer and use it in GitHub Desktop.
Find all calendars in a Google Apps organization w/ GAM
for i in `python gam.py print users | cut -d@ -f1`;
do python gam.py user $i show calendars |egrep 'Name|ID' | paste - - ;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment