10 lines
145 B
Bash
Executable File
10 lines
145 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo Enter the state to walk to:
|
|
read varname
|
|
|
|
python3 path_walk.py $varname new.dot out.dot
|
|
rm temp.dot
|
|
|
|
dot -Tsvg out.dot >ag.svg
|