I have a binary file and i want to replace the value A2 at address DEADBEEF with some other value, say A1.
A2
DEADBEEF
A1
How can I do this w
printf '\xa1' | dd conv=notrunc of=somefile bs=1 seek=$((0xdeadbeef))