Skip to content

Instantly share code, notes, and snippets.

@dobrokot
Created March 10, 2015 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dobrokot/32220e3daff1d2c21c8c to your computer and use it in GitHub Desktop.
Save dobrokot/32220e3daff1d2c21c8c to your computer and use it in GitHub Desktop.
A=10; B=20; bash -c "A=30; B=40; foo() { echo $A \$B; }; declare -f foo"
------------------------------------
Output:
foo ()
{
echo 10 $B
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment