shell script adduser [on hold]

General Tech Bugs & Fixes 3 years ago

2.53K 1 0 0 0

User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.

Answers (1)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 3 years ago

 

I am unable to adapt use the adduser in the script below.

Does anyone have any suggestions for using the adduser in the script below?

useradd does not enable everything needed for remote access

#!/bin/bash

####
# This script automatically creates user accounts with random passwords.
#
# Author: Russ Sanderlin
# Date: 01/21/15
#
###

if [ $# -lt 1 ]; then
echo "Please supply a user name"
echo "Example: " $0 "jsmith"
exit
fi

# Declare local variables, generate random password.

newuser=$1
randompw=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 8 | head -n 1)

# Create new user and assign random password.

useradd -m $newuser
#adduser $newuser
echo $newuser:$randompw | chpasswd
echo "Login:" $newuser "has been created with the following password:" $randompw

#mkdir /home/$newuser

echo "mail">email:"

read mail">emailuser

echo "Login:" $newuser". password:" $randompw | mail -v -s "mensagem" -r " "  $mail">emailuser
0 views
0 shares

No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.

Similar Forum