Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Mar 2001 13:08:10 -0500 (EST)
From:      Francisco Reyes <fran@reyes.somos.net>
To:        Igor Kulemzin <kulemzinn@mail.ru>
Cc:        <questions@FreeBSD.ORG>
Subject:   Re: after cvsup
Message-ID:  <Pine.BSF.4.32.0103171304240.19419-100000@zoraida.reyes.somos.net>
In-Reply-To: <185143746937.20010316083409@mail.ru>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 16 Mar 2001, Igor Kulemzin wrote:

>   What the files I must read after finishing cvsup.
>   I want to know what is changed in my FreeBSD system.

You should read /usr/src/UPDATING.
If what you are looking for is what files changed then what you need to do
is to pipe the result of cvsup to a file. As far as I know this is the
only way to know what changed since your last cvsup.

When doing cvsup interactively I do:
cvsup -g stable-supfile |tee >/var/log/stable.log

But more often I just have a script:
cvsup -g pd-supfile     >/var/log/pdsup.log  &
cvsup -g stable-supfile >/var/log/stable.log &


And then at some point later I use another script:
#!/bin/sh
echo .
echo /var/log/pdsup.log
echo .
tail  /var/log/pdsup.log

echo .
echo /var/log/stable.log
echo .
tail  /var/log/stable.log



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.32.0103171304240.19419-100000>