4 lines
104 B
Bash
Executable file
4 lines
104 B
Bash
Executable file
#!/bin/sh
|
|
|
|
graph_name=bsp
|
|
dot -Tpng ${graph_name}.dot -o ${graph_name}.png && gqview ${graph_name}.png
|