I am asking if there is a way to automatically put the output of a command into the middle of another.
multimon-ng outputs: ZCZC-WXR-TOR-029037+0030-1051700-KEAX/NWS
and i want that output to get sent to where i put three question marks : python2.7 easencode.py -z ??? output.wav
can i do this with pipe and if so, how?
"$(...)"
– pLumo Jun 18 '19 at 09:03multimon-ng
fails and doesn't print anything, thenoutput.wav
will be passed as argument to the-z
option, resulting in a complete cock-up. – Jun 18 '19 at 09:22$( )
construction. – Archemar Jun 18 '19 at 10:03