I know how to redirect output in Linux. Thing is, I have alot of output in my bash script and I don't want to type something like
echo $foo >> bar
over and over again. I would much rather do something like:
hey, bash, for the time being put all your STDOUT in "bar"
echo $foo
.
.
OK, bash, you can go back to regular STDOUT now
I tried opening FD 1 as a file:
exec 1>bar
but couldn't get STDOUT back to normal when I was done. Closing the file
exec 1>&-
gave me errors that I couldn't get around.
Any way to do this? Thanks!