-
-
Save travisperson/f616e0307d3d041223c0 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
| "AAA" | |
| "BBB" | |
| "DDD" |
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
| ~ $ hexdump -v -C asdd | |
| 00000000 22 41 41 41 22 0a 22 42 42 42 22 0a 22 44 44 44 |"AAA"."BBB"."DDD| | |
| 00000010 22 0a |".| | |
| 00000012 | |
| ~ $ hexdump asdd | |
| 0000000 4122 4141 0a22 4222 4242 0a22 4422 4444 | |
| 0000010 0a22 | |
| 0000012 | |
| ~ $ hexdump -v asdd | |
| 0000000 4122 4141 0a22 4222 4242 0a22 4422 4444 | |
| 0000010 0a22 | |
| 0000012 | |
| ~ $ cat asdd | |
| "AAA" | |
| "BBB" | |
| "DDD" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment