bash-ini/README.md
2024-05-31 23:03:47 +02:00

475 B

Bash INI

A simple ini parser written in bash

Setup Instructions

Install required tools:

$ sudo apt update
$ sudo apt install sed

Clone git repository:

$ git clone https://git.tjdev.de/DrMaxNix/bash-ini.git
$ cd bash-ini

Usage

# include the library
source "ini.sh"

# parse a config
ini_parse "config.ini"

# read a value
echo "${ini__section_1[first_value]}"

An in-depth example can be found in the example folder!