When I do yaourt -Syu sometimes there is such a long log in the console so that the buffer gets full and some information is lost. As the information is important sometimes I´d like to save everything that´s logged by yaourt/pacman in a file.

Doing yaourt -Syu > file does save things to file, but then you cannot see what´s going on in the console. Is it possible to have both?

link|improve this question

20% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Yes, pipe it to tee

From the tee man page:

NAME
   tee - read from standard input and write to standard output and files

SYNOPSIS
   tee [OPTION]... [FILE]...

DESCRIPTION
   Copy standard input to each FILE, and also to standard output.

So your command should be yaourt -Syu | tee yaourt.log

link|improve this answer
Ahh, perfect, thanks. – user905686 Jan 23 at 10:47
feedback

I am normally most interested about what ultimately is installed so I just look at the pacman log located at /var/log/pacman.log. All pacman output is there so you can see if there were any errors or important warnings.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.