Shell Script Loader

Hi! Just in case you still need that function in shell script, I had made a project just for the solution. Here's the link:

Shell Script Loader
Google Search

With it you can have something like this:
Code:
#!/bin/sh

# load the helper script
. ./loader.sh

# include other scripts
include script1.sh
include script2.sh

....
...