Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 2.21 KB

README.md

File metadata and controls

57 lines (39 loc) · 2.21 KB

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