This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/bin/sh
|
|
|
|
mkdir -p tables/
|
|
./convert.py use-cases/* -nv -d tables/
|
|
|
|
if [ -f tables.md ]; then
|
|
rm tables.md
|
|
fi
|
|
|
|
for i in tables/*; do
|
|
cat $i >> tables.md
|
|
echo "" >> tables.md
|
|
done
|