1주 전 · software 카운터 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 '덤핑 중...'