Skip to content

Instantly share code, notes, and snippets.

@gin135
Created September 4, 2017 12:24
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 gin135/f225d3f06d76c79f2f8f5d3d8654300c to your computer and use it in GitHub Desktop.
Save gin135/f225d3f06d76c79f2f8f5d3d8654300c to your computer and use it in GitHub Desktop.
#!/bin/sh
echo -n 'ア' | xxd -b | awk '{for(i=2;i<=NF-1;i++){print $i}}' | xargs
echo -n 'あ' | xxd -b | awk '{for(i=2;i<=NF-1;i++){print $i}}' | xargs
echo -n 'アイウエオ' | xxd -b -c 256 | awk '{for(i=2;i<=NF-1;i++){print $i}}' | xargs
echo -n 'アイウエオ' | tr 'ア' 'あ' | xxd -b -c 256 | awk '{for(i=2;i<=NF-1;i++){print $i}}' | xargs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment