Add a missing single quote, and correct the find command so that bzip2'd

logfiles will also be found.

Submitted by:	Dmitry Morozovsky <marck@rinet.ru>
This commit is contained in:
Joe Marcus Clarke 2004-07-16 23:21:18 +00:00
parent cb36d34d58
commit d99bd85062
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=21542

View file

@ -606,14 +606,14 @@
branch is the experimental patches branch):</para> branch is the experimental patches branch):</para>
<screen>&prompt.user; <userinput>cd /var/portbuild/i386/4-exp/errors</userinput> <screen>&prompt.user; <userinput>cd /var/portbuild/i386/4-exp/errors</userinput>
&prompt.user; <userinput>find . -name \*.log | sort > /tmp/4-exp-errs</userinput> &prompt.user; <userinput>find . -name \*.log\* | sort > /tmp/4-exp-errs</userinput>
&prompt.user; <userinput>cd /var/portbuild/i386/4/errors</userinput> &prompt.user; <userinput>cd /var/portbuild/i386/4/errors</userinput>
&prompt.user; <userinput>find . -name \*.log | sort > /tmp/4-errs</userinput></screen> &prompt.user; <userinput>find . -name \*.log\* | sort > /tmp/4-errs</userinput></screen>
<note><para>If it has been a long time since one of the builds <note><para>If it has been a long time since one of the builds
finished, the logs may have been automatically compressed with finished, the logs may have been automatically compressed with
bzip2. In that case, you must use <literal>sort | sed bzip2. In that case, you must use <literal>sort | sed
s,\.bz2,,g'</literal> instead.</para></note> 's,\.bz2,,g'</literal> instead.</para></note>
<screen>&prompt.user; <userinput>comm -3 /tmp/4-errs /tmp/4-exp-errs | less</userinput></screen> <screen>&prompt.user; <userinput>comm -3 /tmp/4-errs /tmp/4-exp-errs | less</userinput></screen>