Created
October 1, 2018 19:13
-
-
Save tonylambiris/e579d2c08ad86994242b106e9a6ca157 to your computer and use it in GitHub Desktop.
Binary Ninja startup script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| pushd ~/binaryninja &>/dev/null | |
| test -f libcurl.so.4 || ln -sf /usr/lib/libcurl-openssl-1.0.so libcurl.so.4 | |
| cd plugins | |
| test -f libpython2.7.so.1 || ln -sf /usr/lib/libpython2.7.so libpython2.7.so.1 | |
| test -f libpython3.so.1 || ln -sf /usr/lib/libpython3.so libpython3.so.1 | |
| popd &>/dev/null | |
| LD_LIBRARY_PATH=$HOME/binaryninja/plugins $HOME/binaryninja/binaryninja |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment