I want to use the function like the command under gdb.
$ cat arg.txt | xargs ./binary
Is there any way to make it?
Thanks and I got an simple solution.
(gdb) run $( cat arg.txt )
It is also possible to pass the output of a command to be the arguments.
(gdb) run $( ruby -e 'print( "text as arguments" )' )