Skip to content

Instantly share code, notes, and snippets.

@czerwe
Created December 24, 2018 21:17
Show Gist options
  • Save czerwe/c9daa47501521055e487ab390462612a to your computer and use it in GitHub Desktop.
Save czerwe/c9daa47501521055e487ab390462612a to your computer and use it in GitHub Desktop.
#!/bin/sh
MYNAME=$1
MYUID=$2
if [ -e /etc/debian_version ]
then
groupadd -g ${MYUID} ${MYNAME}
useradd -d /home/${MYNAME} -ms /bin/bash -u ${MYUID} -g ${MYUID} ${MYNAME}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment