mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
16 lines
220 B
Bash
Executable file
16 lines
220 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
|
|
# 64bit test
|
|
if [[ $(uname -m) == 'x86_64' ]];
|
|
then
|
|
BIN="rp-lin-x64"
|
|
else
|
|
BIN="rp-lin-x86"
|
|
fi
|
|
|
|
wget https://github.com/downloads/0vercl0k/rp/$BIN
|
|
mv $BIN rp++
|
|
mkdir bin
|
|
chmod 755 rp++
|
|
mv rp++ bin
|