bash - Linux Command redirecting output to file but file is not getting populated -
i issuing heavy command bash shell , have redirected output file follows
<command> > output.txt
but file not show output though command running , can see progress through other tool.
it possible command isn't writing stdout
.
you can use &>
redirect both stderr
, stdout
file.
also see advanced bash-scripting guide's io redirection page.
Comments
Post a Comment