Re: stdout and stderr
- Posted by rodoval Sep 06, 2008
- 837 views
Thanks, this do the trick:
$ exu test.ex 2>&1 1>stdout.txt | cat
Other "solution" is to change
puts(2,"To stderr\n")
for
i=system_exec("echo To stderr 1>&2\n", 2)
in the Euphoria code. This is possibly still more ugly, besides platform dependant.