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