Skip to content

Instantly share code, notes, and snippets.

@takuma-saito
Created December 1, 2015 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takuma-saito/cda0fd9c9510c5bf00e3 to your computer and use it in GitHub Desktop.
Save takuma-saito/cda0fd9c9510c5bf00e3 to your computer and use it in GitHub Desktop.
ascii2decimal
#!/bin/zsh
echo -en "$1" | hexdump -v -e '/1 "%02x "' | tr ' ' '\n' | xargs -I{} zsh -lc 'printf "\\\0%03d\n" $(echo $[[#8] 16#{}] | cut -b3-)' | tr -d '\n'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment