/code/awk-scripts/pdr.awk
https://gitlab.com/Raizan/buku-ta · AWK · 16 lines · 13 code · 3 blank · 0 comment · 0 complexity · af3d167ada6be7932b612d13f53fbeed MD5 · raw file
- BEGIN {
- sendLine = 0;
- recvLine = 0;
- }
- $0 ~/^s.* AGT/ {
- sendLine ++ ;
- }
- $0 ~/^r.* AGT/ {
- recvLine ++ ;
- }
- END {
- printf "Sent: %d Recv: %d Ratio: %.4f\n", sendLine, recvLine, (recvLine/sendLine);
- }