Skip to content

Instantly share code, notes, and snippets.

@christiaan-janssen
Created July 9, 2015 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christiaan-janssen/d394cfb0b3ca03e3539a to your computer and use it in GitHub Desktop.
Save christiaan-janssen/d394cfb0b3ca03e3539a to your computer and use it in GitHub Desktop.
Find users and add them to a group
for user in `cat /etc/passwd | grep '._it' | cut -f1 -d':'`
do
`usermod -a -G www-data $user`
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment