A simple ini parser written in bash
Go to file
2024-05-31 22:15:37 +02:00
example 📝 add examples 2024-05-31 22:14:53 +02:00
.editorconfig 🔧 add editorconfig 2024-05-31 21:44:49 +02:00
ini.sh 🚚 mark executable 2024-05-31 21:48:03 +02:00
LICENSE 📄 add license 2024-05-31 21:44:56 +02:00
README.md 📝 fix heading size 2024-05-31 22:15:37 +02:00

Bash INI

A simple ini parser written in bash

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!