> From: Michael Havens <[email protected]>
> Date: Mon, 1 Sep 2014 16:40:06 -0700
> To: [email protected]
> Subject: [lfs-support] section 8.3
>
        .
        .
> grep -E 'error|fail' {make,install}.fail
>
> and this is the complete error log:
>
> root:/sources/linux-3.13.3# grep -E 'error|fail' {make,install}.fail


( A side-note: you're better to use '-iE' there for the grep, so that you
catch e.g. 'Error', 'ERROR', 'Fail', 'FAIL', &c, and not just 'error' and
'fail':

  grep -iE 'error|fail' {make,install}.fail

And likewise when grepping your other logfiles.
)


rgds,
akh





--
-- 
http://lists.linuxfromscratch.org/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Do not top post on this list.

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

http://en.wikipedia.org/wiki/Posting_style

Reply via email to