RfidResearchGroup / proxmark3

Iceman Fork - Proxmark3
http://www.icedev.se
GNU General Public License v3.0
3.72k stars 999 forks source link

CLI - > JSON/XML #916

Closed modemmike closed 4 years ago

modemmike commented 4 years ago

I'm not sure how to word this but is there a way to run a command like pm3 -> hf search with the response in JSON or XML? Basically, someway to automate commands from the shell without user input.

iceman1001 commented 4 years ago

run from shell and pipe?

user@user1:~/iceman$   ./pm3 -h
user@user1:~/iceman$   ./pm3 -c 'hf search' > mylog.txt
modemmike commented 4 years ago

Perfect, thats exactly what I was logging for. Thank you!