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

python - RuntimeError: can't re-enter readline -

python - PyInstaller UAC not working in onefile mode -

php - Need to store a large amount of data in session with CI 3 but on storing large data in session it is itself destorying automatically -