This is the code I've written, it works:
awk "BEGIN{print int(($high-32)*5/9) int(($low-32)*5/9)}";
Results in: 1911
I would like to the '19' and '11' seperated by " | " so that the output looks like this: 19 | 11
I have tried to insert " \| " both as a literal and a var but both resulted in errors. Haven't seen much in the various forums. What am I missing? Thanks.