Pardon my scripting ignorance.
I am trying to create a script to add users to the _developer group so they do not get prompted for admin credentials.
I am not sure on how to get the users user name and then add it.
Scripting is not my strong point, yet.
I am working from the BashExample.sh script
This is what I got so far and it is not working.
--
#!/bin/bash
username=$1
dscl . append /Groups/_developer GroupMembership $username
exit 0
---
Thanks in advance for any help!
Wi11