fork(3) download
  1. def map = [Node: '', 'Message group': '', Application: 'appl', Severity: 'critical']
  2. println map
  3. map.Application = ''
  4. //or you can use any of below notation as well to update
  5. //map['Application'] = ''
  6. //map.put('Application', '')
  7. println map
Success #stdin #stdout 0.82s 4456448KB
stdin
Standard input is empty
stdout
[Node:, Message group:, Application:appl, Severity:critical]
[Node:, Message group:, Application:, Severity:critical]