Greg Chicares wrote:
> On 2008-01-26 11:57Z, electron wrote:
>> I'm doing an assignment for school and I'm supposes to disassemble a piece
>> of code with a disasembler. This works just fine but the output asembly code
>> is to large to fit on the screen. So when i scroll all the way up I can't
>> read the complete output.
>
> $disassemble binary_file 2>&1 | less
>
> Syntax explained under "REDIRECTION" in the 'bash' manual:
> $man bash
or...
$disassemble binary_file >/path/to/dump.txt 2>&1
--
Unsubscribe info:
http://cygwin.com/ml/#unsubscribe-simpleProblem reports:
http://cygwin.com/problems.htmlDocumentation:
http://cygwin.com/docs.htmlFAQ:
http://cygwin.com/faq/