nick-invision / import.bash

Golang-like import statement in bash

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Golang-like import statement in bash


Languages

Language:Shell 100.0%