first commit

This commit is contained in:
Raven Scott
2022-05-31 18:28:17 -05:00
commit 754955ce15
119 changed files with 5925 additions and 0 deletions

18
ubuntu/auto-install.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/bash
if [ $# -eq 0 ]; then
echo "Welcome to the Discord-Linux Automated-Installer"
echo "To view the currently avalible software, use: auto-install list"
exit 1
fi
OperatingSystem=$(cat /var/OS)
#!/bin/bash
if [ "$1" == "list" ]
then
curl https://ssh.surf/$OperatingSystem/list
else
wget -q -O - https://ssh.surf/$OperatingSystem/$1 | bash
fi