Re: installation difficulties
26 Jul
2000
26 Jul
'00
7:40 p.m.
Robert P. Ewing wrote:
Other information available upon request, though it would help if I knew how to redirect StdOut to a file in DOS - so far my attempts aren't working.
StdOut can be redirected simply with `>', but I suppose you mean StdErr. If you're using bash (available for DJGPP), you can do it with `2>' (StdErr only) or `&>' (StdOut and StdErr). Otherwise, you can use the `redir' utility (part of DJGPP) like this: # Redirect StdErr to foo redir -e foo command args # Redirect StdOut and StdErr to foo redir -e foo -oe command foo Frank -- Frank Heckenbach, frank@g-n-u.de, http://fjf.gnu.de/ GPC To-Do list, latest features, fixed bugs: http://agnes.dida.physik.uni-essen.de/~gnu-pascal/todo.html
9515
Age (days ago)
9515
Last active (days ago)
0 comments
1 participants
participants (1)
-
Frank Heckenbach