[Ubuntu] Background로 실행 중인 프로세스 output 확인

Check stdout of running process


top로 확인 가능한 process의 terminal output를 확인하기 위한 명령어

# std out
cat /proc/{pid of process}/fd/1
# std err
cat /proc/{pid of process}/fd/2