Specifically, I'm using a combination of >> and tee in a custom alias to store new Homebrew updates in a text file, as well as output on screen:
alias bu="echo `date "+%Y-%m-%d at %H:%M"` \
>> ~/Documents/Homebrew\ Updates.txt && \
brew update | tee -a ~/Documents/Homebrew\ Updates.txt"
Question: What if I wish to prepend this output in my textfile, i.e. placed at the beginning of the file as opposed to appending it to the end?
Edit1: As someone reported in the answers below, the use of temp files might be a good approach, which at least helped me partially:
alias bu="(brew update | cat - ~/Documents/Homebrew\ Updates.txt \
> /tmp/out1 && mv /tmp/out1 ~/Documents/Homebrew\ Updates.txt \
&& echo `date "+%Y-%m-%d at %H:%M":%S` | \
cat - ~/Documents/H`omebrew\ Updates.txt \
> /tmp/out2 && mv /tmp/out2 ~/Documents/Homebrew\ Updates.txt)"
But the problem is the output to STDOUT (previously made possible by tee), which I'm not sure can be incorporated in this tempfile approach …?
echo `date...`...date...on it own is enough – Peter.O Oct 18 '11 at 13:51