1
Is there any way to "print to file" the queried results of the bitcoin-cli. This would be most helpful in my basic cross platform integration of a program I am making with QB64.
1
Is there any way to "print to file" the queried results of the bitcoin-cli. This would be most helpful in my basic cross platform integration of a program I am making with QB64.
2Can't you just redirect the output to a file?
bitcoin-cli getblockchaininfo > out.txt– Raghav Sood – 2018-09-29T00:52:31.4431
I'm voting to close this question as off-topic because it is really about programming in a variant of Quick-Basic, specifically how in QuickBasic to capture the STDOUT of an external program run in a
– RedGrittyBrick – 2018-09-30T08:40:26.150shellstatement. See https://stackoverflow.com/questions/41305926/how-to-pipe-stdout-and-stdin-to-qbasic-program.