mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-12 02:54:03 -06:00
12 lines
172 B
Bash
12 lines
172 B
Bash
# Set user password
|
|
echo "----------"
|
|
echo ""
|
|
echo "Which is the username?"
|
|
read userName
|
|
|
|
sudo passwd $userName
|
|
|
|
# Create Directories
|
|
mkdir /home/$userName/Projects
|
|
|
|
exit
|