5 lines
86 B
Bash
5 lines
86 B
Bash
#!/bin/bash
|
|
|
|
# Add the current user to the sudo group
|
|
sudo usermod -aG sudo $(whoami)
|