Skip to content

Instantly share code, notes, and snippets.

@jab416171
Created March 25, 2013 15:47
Show Gist options
  • Save jab416171/5238089 to your computer and use it in GitHub Desktop.
Save jab416171/5238089 to your computer and use it in GitHub Desktop.
0x20 vs 0xc2a0
[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