2014-02-04
A variable looks like this:
export FOO=bar To get a variable in your interactive shell, source the script that contains it as such:
source script_that_contains_FOO echo $FOO A function looks like this:
function foo() { echo foo } To run a function in …
Found 3 articles.