nc와 fifo의 이상하고 일관되지 않은 출력
나는 다음과 같은 정확한 코드를 가지고 있습니다. #!/bin/bash gtimeout(){ if type -f gtimeout &> /dev/null; then command gtimeout "$@" else timeout "$@" fi } export -f gtimeout; on_first_match(){ local pattern="$1" # The pattern to search for while IFS= read -r line; do ...