# Library Functions

Bashly comes with a set of library functions that can be added to your script by running the bashly add command. All libraries are documented inline, and the documentation below is a high level overview with examples.

# YAML parser

Adds the ability to read YAML files in your bash script.

$ bashly add yaml
yaml_load "settings.yml"             # print variables
yaml_load "settings.yml" "config_"   # use prefix
eval $(yaml_load "settings.yml")     # create variables in scope

YAML Example on GitHub

# Config (INI) handler

Adds the ability to create, read and write configuration INI files. This library uses the ini library under the hood for loading and saving the INI files.

$ bashly add config
# Add or update a key=value pair in the config.
config_set username Operations

# Use dot notation to specify an INI section ([login] in this case).
config_set login.email [email protected]

# Get the value from the config file.
result=$(config_get login.username)

# Delete a key from the config.
config_del username

# Show the config file.
config_show

# Return an array of the keys in the config file
for key in $(config_keys); do
  echo "- $key = $(config_get "$key")";
done

# Returns true if the specified key exists in the config file
if config_has_key "key" ; then
  echo "key exists"
fi

Config Example on GitHub

# INI handler

Adds the ability to load and save INI files. This is a low-level library that is used by the config library.

$ bashly add ini
# Load an INI file into the `ini` associative array.
ini_load 'path/to/file.ini'

# Save the associative array back to the INI file.
ini_save 'path/to/file.ini'

# Access a value
name=${ini[key]}
name=${ini[section.key]}
name=${ini[section.key]:-default}

# Create/update a value
ini[section.key]="new value"
ini_save

# Delete a value
unset ini[section.key]
ini_save

# Show the loaded values
ini_show

INI Example

# Color output

Adds functions for printing colored strings.

$ bashly add colors
echo "before $(red this is red) after"
echo "before $(green_bold this is green_bold) after"

See the generated script in src/lib/colors.sh for the full list of colors.

Colors Example

# Auto-update

Files added by the bashly add * commands can be automatically updated to their original state by running

bashly generate --upgrade

The --upgrade flag will scan all the files in the src/lib directory for a special magic comment in this format:

[@bashly-upgrade <library>]

When found, and assuming the path of the file matches the one in the library, this file will be updated.

You are encouraged to modify the generated library functions to your liking, but if you do so, remember to remove this magic comment to prevent accidentally overriding it in future runs of bashly generate --upgrade.

# See also

Custom Libraries Source
../lib-source/