mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
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.
This commit is contained in:
parent
ed80878377
commit
cb5effa28c
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue