Skip to content

Instantly share code, notes, and snippets.

@nervous-inhuman
Last active May 25, 2016 21:08
Show Gist options
  • Save nervous-inhuman/72527960d9ac0ef77ae539a3c41a26d8 to your computer and use it in GitHub Desktop.
Save nervous-inhuman/72527960d9ac0ef77ae539a3c41a26d8 to your computer and use it in GitHub Desktop.
Simple IDA/IDA64 Launcher
#!/bin/bash
arch=`file $1 2>&1 | awk '{print $3}'`
if [ "$arch" == "32-bit" ]
then
/opt/ida/idaq $1
elif [ "$arch" == "64-bit" ]
then
/opt/ida/idaq64 $1
else
/opt/ida/idaq $1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment