linux/solaris + 표준 출력 작업

linux/solaris + 표준 출력 작업

Linux/solaris 시스템에서 다음 줄을 실행합니다(모든 출력은 application.bin의 /tmp/Log에 기록됩니다).

 ./application.bin 1>>/tmp/Log

/tmp/Log 파일의 내용을 볼 수 있습니다.

 more /tmp/Log

/etc/opt/OA/share/conf/OpC/mgmt_sv/ui/registration/C/opc_op /etc/opt/OA/share/conf/analysis/system_odbc.iniaaaa
/etc/opt/OA/share/conf/ovspmd.authaaaa
/etc/opt/OA/share/conf/ovwdb.authaaaa
/etc/opt/OA/share/conf/ovw.authaaaa 

내 질문:

구문에서 무엇을 변경하거나 추가해야 합니까?

   "1>>/tmp/Log" ? 

아래 예와 같이 각 줄 사이에 공백을 추가하려면

       /etc/opt/OA/share/conf/OpC/mgmt_sv/ui/registration/C/opc_op
  .
       /etc/opt/OA/share/conf/analysis/system_odbc.iniaaaa
  .
       /etc/opt/OA/share/conf/ovspmd.authaaaa
  .
       /etc/opt/OA/share/conf/ovwdb.authaaaa
  .
       /etc/opt/OA/share/conf/ovw.authaaaa 

참고 – /tmp/Log를 생성한 후 각 줄 사이에 공백을 추가하는 옵션은 관련이 없습니다.

답변1

./application.bin | sed '$!G' >> /tmp/Log

관련 정보