bash-ini/README.md

34 lines
475 B
Markdown
Raw Permalink Normal View History

2024-05-31 21:44:42 +02:00
# Bash INI
A simple ini parser written in bash
2024-05-31 22:14:53 +02:00
2024-05-31 23:03:47 +02:00
## Setup Instructions
Install required tools:
```console
$ sudo apt update
$ sudo apt install sed
```
Clone git repository:
```console
$ git clone https://git.tjdev.de/DrMaxNix/bash-ini.git
$ cd bash-ini
```
2024-05-31 22:15:37 +02:00
## Usage
2024-05-31 22:14:53 +02:00
```bash
# 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!