i have a script being started with gnome. that script is set to autostart with gnome automatically via system > preferences > startup applications. so where does the standard output of such an auto started program go? the first google results didn't fit...
|
feedback
|
migrated from stackoverflow.com Feb 17 '11 at 1:41
This question came from our site for professional and enthusiast programmers.
|
stdout and stderr are eventually redirected in the X startup to | |||||
feedback
|
|
You could redirect normal and error output at the beginning of your script like this:
Then when the script gets executed you'll be able to peek into the corresponding log file and see what's going on. I hope this helps you! | |||
|
feedback
|
cat /dev/vcs7does not help. – Anonymous Feb 12 '11 at 17:38