Skip to content

Instantly share code, notes, and snippets.

@zhengxiaowai
Created November 26, 2016 04:03
Show Gist options
  • Save zhengxiaowai/f04e6d95b7d117a8133402008ff15d76 to your computer and use it in GitHub Desktop.
Save zhengxiaowai/f04e6d95b7d117a8133402008ff15d76 to your computer and use it in GitHub Desktop.
root 添加用户,自动添加用户目录
#!/bin/bash
username=$1
useradd -m -s /bin/bash $username
usermod -aG sudo $username
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment