Skip to content

Instantly share code, notes, and snippets.

@thieux
Last active September 13, 2016 15:55
Show Gist options
  • Save thieux/13a9f10a417d584b64146feb502db637 to your computer and use it in GitHub Desktop.
Save thieux/13a9f10a417d584b64146feb502db637 to your computer and use it in GitHub Desktop.

Export

In top.bash

#!/bin/bash

export foo=hello

./sub.bash

In sub.bash

#!/bin/bash

echo $foo
$ top.bash
hello

Source

In top.bash

#!/bin/bash

. ./source.bash

echo $foo

In source.bash

#!/bin/bash

foo=hello
$ ./top.bash
hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment