Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

GrouperShell is for Grouper admins.  End users can script with the grouper client command line utility

...

Hints and tricks

Escape things in groovysh with single backslash.  e.g.

...

Code Block
FROM
Object[] row = new Object[] {emailFromOutsystems, pennkeyPerhaps};

TO
Object[] row = new Object[2];
row[0] = emailFromOutsystems;
row[1] = pennkeyPerhaps;

Reset the shell after an error

Code Block
:c


API Compability

gsh is now a core part of the Grouper API and so is always compatible with the current release.

...