summaryrefslogblamecommitdiffstats
path: root/docs/graphs/generate.sh
blob: 45073820a3ca7d7088bcbcdf56c16388f2a0dd0b (plain) (tree)
1
2
3
4
5
6





                                     
#!/usr/bin/env bash

for file in *.dot
do
  dot -Tpng ${file} -o ${file%.*}.png
done