A little CLI tool for exploring my own writing, structured with the UM schema.
gag foo --verboseResponse in the ./testdata dir, formatted like TOML:
[files]
01.foo.md
[tags]
foo
[adjacencies]
bar
[sums]
files = 1
adjacencies = 1And plain:
gag barOutput is ready to pipe:
01.foo.md
02.foo.md
03.bar.mdLike this:
gag foo | xargs cat > /tmp/foo.mdAlso accepts piped input from stdin:
ls *foo*md | gag barAnd can therefore be chained:
gag foo | gag bar --invertTags can also be intersected:
gag foo+barSee --help for all flags.