I have a file that I want to use as the user input in a C program that ask for user input trough a scanf (playing and learning in linux)
lets call the program a.out and the file with the contents myImput, thereby:
- in shell I can go:
cat myInput | ./a.out
- in gdb I could do:
run < myInput
once loaded withgdb a.out
is that possible in radare2 ? I see how to inject parameters, but not content files as user input