I have C code, that has been compiled. Then I have to execute from command line
../../../PStomo_eq665/pstomo_eq par=syn.par >& log.syn
What does >&
mean in this context? Both files syn.par
and log.syn
contain parameters for pstomo_eq
.
I have C code, that has been compiled. Then I have to execute from command line
../../../PStomo_eq665/pstomo_eq par=syn.par >& log.syn
What does >&
mean in this context? Both files syn.par
and log.syn
contain parameters for pstomo_eq
.
Redirect stderr and stdout
>&
is equivalent to&>
and redirects both standard error and standard output.From the bash man page:
In your question, stderr and stdout are redirected to
log.syn