From cb5effa28cc9e7729875336d1e6458cc107c1b1a Mon Sep 17 00:00:00 2001 From: James Juran Date: Sun, 3 Jan 1999 12:28:44 +0000 Subject: [PATCH] Of course we want the last 100 lines, not the first 100 lines. Use 'tail' instead of 'head'. Also fix text alignment from previous patch. --- documentation/bugreports | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/bugreports b/documentation/bugreports index f111c78ef19..52c28bcaf03 100644 --- a/documentation/bugreports +++ b/documentation/bugreports @@ -33,12 +33,12 @@ likely to get answered and fixed): tcsh and other csh-like shells: wine -debugmsg +relay [other_options] program_name |& tee filename.out - head -100 filename.out > report_file + tail -100 filename.out > report_file bash and other sh-like shells: wine -debugmsg +relay [other_options] program_name 2>&1 | tee filename.out - head -100 filename.out > report_file + tail -100 filename.out > report_file 'report_file' will now contain the last hundred lines of the debugging output, including the register dump and backtrace, which are the most -- 2.11.4.GIT