Batch update a Who Object

Hi Stoiko

You star, thanks!

Bash:
pmgsh get /config/ruledb/who # to find the id of the object of interest, 119 in my case
while read addy; do pmgsh create /config/ruledb/who/119/email --email $addy; done < user-list.txt
Cheers
Toby