import.bash icon indicating copy to clipboard operation
import.bash copied to clipboard

Golang-like import statement in bash

import.bash

bash import directive, like in Golang.

import-bash-2

Usage

source "vendor/github.com/reconquest/import.bash/import.bash"

import:use "path/to/any/lib.bash"

How does it work?

import.bash will look into vendor directory and, if vendor missing, will try to clone it.

Then, file named same as last part of the import name will be sourced.

Example

source "vendor/github.com/reconquest/import.bash/import.bash"

import:use "github.com/reconquest/opts.bash"

declare -a args
declare -A opts

opts:parse opts args -a -b: -- "${@}"

echo "-a: ${opts[-a]}"
echo "-b: ${opts[-b]}"

echo "args: ${args[@]}"

Reference

See reference at REFERENCE.md.

Various libs