diff --git a/README.md b/README.md index 6d05e10..8defa8b 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ There are also some installers for non-CTF stuff to break the monotony! |----------|------|-------------| | game | [Dwarf Fortress](http://www.bay12games.com/dwarves/) | Something to help you relax after a CTF! | | tor-browser | [tor-browser](https://www.torproject.org/projects/torbrowser.html.en) | Useful when you need to hit a web challenge from different IPs. | +| pyvmmonitor | [pyvmmonitor](http://www.pyvmmonitor.com/) | PyVmMonitor is a profiler with a simple goal: being the best way to profile a Python program. | ## Usage diff --git a/pyvmmonitor/install b/pyvmmonitor/install new file mode 100755 index 0000000..260a329 --- /dev/null +++ b/pyvmmonitor/install @@ -0,0 +1,11 @@ +#!/bin/bash -e + +wget https://bbc5a801c67991bd078f7f789065e318bdf9d509.googledrive.com/host/0BwwQN8QrgsRpOGpyc2syWkVYVkE/PyVmMonitor%201.0.1/pyvmmonitor_1.0.1_linux.x86_64.tar.gz -O - | tar xvz + +mkdir -p bin +cat < bin/pyvmmonitor-ui +#!/bin/bash -e +cd $PWD/pyvmmonitor +exec ./pyvmmonitor-ui "\$@" +END +chmod 755 bin/pyvmmonitor-ui