importpw / import

`import` is a simple and fast module system for Bash and other Unix shells
https://import.sh
MIT License
338 stars 10 forks source link

Figure out how to support "relative imports" #2

Closed TooTallNate closed 5 years ago

TooTallNate commented 5 years ago
# foo.sh
foo() {
  echo bar
}
# bar.sh
import './foo.sh'
foo