2016년 1월 27일 수요일

Shell 스크립트 실행 결과 로그 파일에 추가 | Add the Result of Script File to a Log File in Shell

a.sh

#!bin/bash

echo "a"

b.sh

#!bin/bash

echo "b"

$ sh a.sh | tee -a ./result.log
$ sh b.sh | tee -a ./result.log

result.log

a
b

댓글 없음:

댓글 쓰기