mirror of
https://github.com/wader/fq.git
synced 2024-11-28 03:02:55 +03:00
12 lines
203 B
Bash
12 lines
203 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in $(cd $REPODIR/format && ls -1 | sort); do
|
||
|
if [ ! -e $REPODIR/format/$i/doc.md ]; then
|
||
|
continue
|
||
|
fi
|
||
|
|
||
|
echo "### $i"
|
||
|
echo
|
||
|
cat "$REPODIR/format/$i/doc.md"
|
||
|
done
|