Skip to content

Instantly share code, notes, and snippets.

@mrexodia
Last active February 18, 2025 12:50
Show Gist options
  • Save mrexodia/f0fd8d674daa4cc0941705572e4577e2 to your computer and use it in GitHub Desktop.
Save mrexodia/f0fd8d674daa4cc0941705572e4577e2 to your computer and use it in GitHub Desktop.
Simple utility to quickly open a file in Binary Ninja on your mac
#!/bin/sh
if [ "$#" -gt 0 ]; then
xattr -c "$1"
fi
open -a "Binary Ninja" "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment