Skip to content

Instantly share code, notes, and snippets.

@tonylambiris
Created October 1, 2018 19:13
Show Gist options
  • Select an option

  • Save tonylambiris/e579d2c08ad86994242b106e9a6ca157 to your computer and use it in GitHub Desktop.

Select an option

Save tonylambiris/e579d2c08ad86994242b106e9a6ca157 to your computer and use it in GitHub Desktop.
Binary Ninja startup script
#!/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