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:
parent
cb36d34d58
commit
d99bd85062
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=21542
1 changed files with 3 additions and 3 deletions
|
@ -606,14 +606,14 @@
|
|||
branch is the experimental patches branch):</para>
|
||||
|
||||
<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>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
|
||||
finished, the logs may have been automatically compressed with
|
||||
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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue