You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-14Lines changed: 8 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,14 @@
1
1
# bash-object
2
2
3
-
The _first_ Bash library for imperatively constructing heterogeneously hierarchical data structures
3
+
The _first_ Bash library for imperatively constructing data of nested and heterogeneous form
4
4
5
5
This is meant to be a low level API providing primitives for other libraries.
6
6
7
-
In the coming days, I will release never seen before parsers written in Bash called [bash-toml](https://github.com/hyperupcall/bash-toml) and [bash-json](https://github.com/hyperupcall/bash-json) that use this library
8
-
9
7
## Exhibition
10
8
11
9
```sh
12
-
# How to represent the following in Bash?
10
+
# Problem: How to represent the following in Bash?
11
+
13
12
# {
14
13
# "zulu": {
15
14
# "yankee": {
@@ -21,6 +20,9 @@ In the coming days, I will release never seen before parsers written in Bash cal
21
20
# }
22
21
# }
23
22
23
+
24
+
# Solution: Use bash-object to construct the hierarchy
0 commit comments