3
bash : -x 로그를 파일로 설정
set -xverbose / debug 출력을 갖는 쉘 스크립트가 있습니다. #!/bin/bash set -x command1 command2 ... 결과는 다음과 같습니다. + command1 whatever output from command1 + command2 whatever output from command2 내 문제는 쉘 출력 (발생이된다 set -x) 명령의 출력 (와 혼합 표준 에러에 간다 command1, command2...). 화면에 "정상"출력 (예 : …