mirror of
https://github.com/wader/fq.git
synced 2024-11-23 09:56:07 +03:00
0829c167cc
Basic support, can also do CER and DER but without any extra validation. No schema support. Redo format doc.md usage a bit, now format/<dir>/<format>.md instead. Related to #20
10 lines
207 B
Bash
Executable File
10 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for i in $(cd "$REPODIR" && ls -1 format/*/*.md | sort -t / -k 3); do
|
|
FORMAT=$(echo "$i" | sed 's#format/.*/\(.*\).md#\1#')
|
|
echo "### $FORMAT"
|
|
echo
|
|
cat "$REPODIR/$i"
|
|
echo
|
|
done
|