Skip to content

Instantly share code, notes, and snippets.

@mrexodia
Last active January 8, 2026 12:21
Show Gist options
  • Select an option

  • Save mrexodia/f0fd8d674daa4cc0941705572e4577e2 to your computer and use it in GitHub Desktop.

Select an option

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" "$@"
#!/bin/sh
if [ "$#" -gt 0 ] && [ -e "$1" ]; then
xattr -c "$1" 2>/dev/null
fi
open -a "IDA Professional 9.2.app" "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment