Last active
February 18, 2025 12:50
-
-
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
This file contains 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/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