Skip to content

Instantly share code, notes, and snippets.

View dariocc's full-sized avatar

Darío Cutillas dariocc

View GitHub Profile
@dariocc
dariocc / dconf-to-json
Created October 9, 2023 12:13
Export dconf to JSON
#!/bin/bash
awk '
/^\[/ {
gsub(/[\[\]]/,"")
f=$0
next
}
NF{
if(a[f]) s=","; else s=""