Skip to content

Instantly share code, notes, and snippets.

@yifan-gu
Last active December 1, 2015 19:40
Show Gist options
  • Select an option

  • Save yifan-gu/7bc722d37a42ab9ea6d3 to your computer and use it in GitHub Desktop.

Select an option

Save yifan-gu/7bc722d37a42ab9ea6d3 to your computer and use it in GitHub Desktop.
foo
#!/bin/bash
source foo.sh
foo
#!/bin/bash
function foo() {
echo "hello"
}
echo "world"
$ ./bar.sh
world # We don't want to print this
hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment