edu-dis-labs-vodyana/utils/table-generator/update-tables.sh

14 lines
205 B
Bash
Raw Permalink Normal View History

2024-05-26 20:08:05 +03:00
#!/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