Is there any straightforward way to modify a binary from the commandline? Let\'s say I know that my binary contains 1234abcd and i want to change it to 12FFabcd or FFFFabcd
Some alternatives:
ucon64 --nbak --poke=OFF:V FILE
printf '\x31' | dd of=FILE bs=1 seek=OFFSET count=1 conv=notrunc