Rexxer

Some tips for me and other

Ubuntu + Create a user with password from the parameter

#!/bin/bash

adduser --disabled-password --gecos "" admin
usermod -aG sudo admin
echo "admin:$1" | chpasswd

Comments are currently closed.