1 week ago · software counter bash mkfifo counter.fifo t=0 b=0 while read cmd; do case '$cmd' in inc_t t++ ;; inc_b b++ ;; get echo '$t $b' ;; esac done counter.fifo echo '' echo 'Dumping ta...