9 lines
157 B
Bash
9 lines
157 B
Bash
pacman -S git base-devel sudo
|
|
|
|
useradd -m tobi
|
|
passwd tobi
|
|
echo "Adding tobi to sudoers list"
|
|
echo "tobi ALL=(ALL) ALL" >> my_file.txt
|
|
cd /home/tobi
|
|
su tobi
|