Ok, now I'm trying to get a csv exported of 3 columns: e-mail, first name, last name. The closest I get is from:
zmprov gaa -v | grep -e name -e sn -e givenName | awk 'ORS=","' > all_accounts.csv
But there's a lot of extra "junk" in the output. Anyone know how to get what I'm looking for? |