I\'ve built up this pipeline:
echo \"scale=2;$(cat io | grep wchar | awk \'{print $2}\')/(1024^3)\" | bc
Now I\'m trying to watch
watch
Try having watch invoke the shell:
watch sh -c 'echo "scale=2;$(awk '/wchar/ {print $2}' io)/(1024^3)" | bc'
This is similar to having it invoke a script but without needing a separate file.