a.sh content
#!/bin/bash
awk '{u=$2+$4; t=$2+$4+$5; if (NR==1){u1=u; t1=t;} else print ($2+$4-u1) * 100 / (t-t1) "%"; }' <(grep 'cpu ' /proc/stat) <(sleep 5;grep 'cpu ' /proc/stat)
It works when pasted to shell directly,but not work when executed as a script file sh a.sh
.
what is the difference ?