Gawk Inplace and Stdout
gawk의 -i inplace옵션 을 사용하여 인쇄 할 수도 stdout있습니까? 예를 들어, 파일을 업데이트하고 싶거나 변경 사항이 있으면 파일 이름과 변경된 줄을 인쇄하면 stderr다음과 같은 작업을 수행 할 수 있습니다 find -type f -name 'myfiles' -exec gawk -i inplace '{if(gsub(/pat/, "repl")) { print FILENAME > "/proc/self/fd/2" ; print > "/proc/self/fd/2"; } …