11 lines
186 B
Bash
Executable file
11 lines
186 B
Bash
Executable file
#!/bin/sh
|
|
|
|
rm *.svg
|
|
rm *.dot
|
|
python main.py
|
|
# dot randomGraph.dot -Tsvg > randomGraph.svg
|
|
for filename in randomGraph-*.dot; do
|
|
dot $filename -Tsvg > $filename.svg
|
|
done
|
|
|
|
firefox *.svg
|