I use awk to split the binary stream, and I can get every part in a for loop like this.
for(i=1;i<=NF;i++)
I do not want to convert each field to text or arguments, but just pass it directly to the command.
I'm trying to find something like this,
for(i=1;i<=NF;i++) system("decode")
but this obviously does not work. decoding does not accept input.
How to get decoding to get each field in a loop?
binary-data awk
akula1001
source share