echo "mov %eax, 0x123" > test.asm && as test.asm -o test.o && ld test.o -o test objdump -d test |grep "eax" 4000b0: 89 04 25 23 01 00 00 mov %eax,0x123 WE NEED TO GO DEEPER
test.asm && as test.asm -o test.o && ld test.o -o test objdump -d test |grep "eax"
4000b0: 89 04 25 23 01 00 00 mov %eax,0x123 WE NEED TO GO DEEPER - echo "mov %eax, 0x123" > test.asm && as test.asm -o test.o && ld test.o -o test objdump -d test |grep "eax"
4000b0: 89 04 25 23 01 00 00 mov %eax,0x123 WE NEED TO GO DEEPER Inception">