You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
129 B

  1. #!/bin/bash
  2. for i in $(objdump -d $1 | tr '\t' ' ' | tr ' ' '\n' | egrep '^[0-9a-f]{2}$' )
  3. do
  4. echo -n "\x$i"
  5. done
  6. echo -e "\n"