8 lines
132 B
Bash
Executable file
8 lines
132 B
Bash
Executable file
#!/bin/bash
|
|
# Elevate script
|
|
if [ ! "$UID" -eq 0 ]
|
|
then
|
|
sudo bash "$BASH_SOURCE"
|
|
else
|
|
apt install -y steam vim docker.io
|
|
fi
|