Created
September 4, 2017 12:24
-
-
Save gin135/f225d3f06d76c79f2f8f5d3d8654300c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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