mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-14 09:47:08 +00:00
12 lines
316 B
Bash
Executable file
12 lines
316 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
# retry because the server is not reliable
|
|
wget -t 10 https://www.mediafire.com/download/bzmazee4bcysbi4/pyvmmonitor_1.0.1_linux.x86_64.tar.gz -O - | tar xvz
|
|
|
|
mkdir -p bin
|
|
cat <<END > bin/pyvmmonitor-ui
|
|
#!/bin/bash -e
|
|
cd $PWD/pyvmmonitor
|
|
exec ./pyvmmonitor-ui "\$@"
|
|
END
|
|
chmod 755 bin/pyvmmonitor-ui
|