linux - Logging output from executable -


is possible in linux start program ./program , outputs gets written output.txt file?

how ./program > /tmp/mylogfile.txt 2>&1

sending /tmp/mylogfile.txt file.

the > redirection of standard out (stdout) , 2>&1 redirects standard error (stream file descriptor 2) standard out (stream file descriptor 1)


Comments

Popular posts from this blog

4x4 Matrix in Python -

python - String indices must be integers and while issue -

python - PyInstaller UAC not working in onefile mode -