Skip to content
Snippets Groups Projects
Commit cb5effa2 authored by James Juran's avatar James Juran Committed by Alexandre Julliard
Browse files

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.
parent ed808783
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment