Skip to content

Instantly share code, notes, and snippets.

@kazimuth
Created July 29, 2015 22:32
Show Gist options
  • Save kazimuth/684e8b61082d7987d023 to your computer and use it in GitHub Desktop.
Save kazimuth/684e8b61082d7987d023 to your computer and use it in GitHub Desktop.
Shell incompatibilities
#!/bin/sh
A="HI!" B="$(sh -c 'echo $A')" sh -c 'echo $A $B'
# $ bash test.sh
# HI! HI!
# $ dash test.sh
# HI!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment