In the disassembler and debugger IDA, is there any way to run the currently loaded binary with command line parameters? For instance, say I have the command /bin/ls
and want to debug it as /bin/ls test.txt
, how could I do that in IDA?
Asked
Active
Viewed 1.4k times
12

Numeri
- 1,027
- 4
- 14
- 32
-
I've searched the Internet for an answer, and can't find anything! The best I could find was a forum where a user asked this question, and then was rudely instructed to do some Google-ing on his own first, before asking! Not very helpful... – Numeri Sep 15 '15 at 14:19
1 Answers
21
Go to the Debugger
/ Process options...
menu item and fill the test.txt
argument in the Parameters
field.
The path to the executable (including the binary) will be in the Application
field.

Seki
- 11,135
- 7
- 46
- 70
-
4Thank you, that's just what I need! Now, hopefully, this will be an easier question to Google for! – Numeri Sep 15 '15 at 14:29