$ head sample.json
[
{
"name_kr": "\ubc15\uc815\uadfc",
"name_cn": "\u6734\u5b9a\u6839",
"sex": "\ub0a8",
"birthyear": "1897",
$ uhead sample.json
[
{
"name_kr": "박정근",
"name_cn": "朴定根",
"sex": "남",
"birthyear": "1897",
Last active
December 11, 2015 18:28
-
-
Save cornchz/4641629 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
ucat() { | |
cat $@ | native2ascii -encoding UTF-8 -reverse | |
} | |
uhead() { | |
head $@ | native2ascii -encoding UTF-8 -reverse | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment