I have a problem when cut information dumped out from an executable file in linux. The information is as follows:
08048060 <__bss_start-0x100a>:
8048060: 31 db xor %ebx,%ebx
8048062: 53 push %ebx
8048063: bb 75 a2 45 7e mov $0x7e45a275,%ebx
8048068: ff d3 call *%ebx
Is there any way to cut faster the data "31 db 53 bb 75 a2 45 7e ff d3" without copy single line then remove command in every line? Sometime when the code too long, it take many times to cut all data in that column.