Created
March 25, 2013 15:47
-
-
Save jab416171/5238089 to your computer and use it in GitHub Desktop.
0x20 vs 0xc2a0
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
[09:39:13] ~$ xxd | |
if [[ "true" == "true" ]]; then echo "yes"; fi; | |
0000000: 6966 c2a0 5b5b 2022 7472 7565 2220 3d3d if..[[ "true" == | |
0000010: 2022 7472 7565 2220 5d5d 3b20 7468 656e "true" ]]; then | |
0000020: 2065 6368 6f20 2279 6573 223b 2066 693b echo "yes"; fi; | |
0000030: 0a . | |
[09:39:25] ~$ xxd | |
if [[ "true" == "true" ]]; then echo "yes"; fi; | |
0000000: 6966 205b 5b20 2274 7275 6522 203d 3d20 if [[ "true" == | |
0000010: 2274 7275 6522 205d 5d3b 2074 6865 6e20 "true" ]]; then | |
0000020: 6563 686f 2022 7965 7322 3b20 6669 3b0a echo "yes"; fi;. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment