From e7d743418643a6e22ce12cd5c9f561e9767b67d2 Mon Sep 17 00:00:00 2001 From: jebba Date: Sat, 15 Jan 2022 11:31:47 -0700 Subject: [PATCH] run with bangpath --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4339e80..fc9664a 100644 --- a/README.md +++ b/README.md @@ -31,16 +31,16 @@ HOWTO use. ``` # Process netlist with live view. -python3 pcb.py --v 1 examples/netlist.pcb | python3 view.py +./pcb.py --v 1 examples/netlist.pcb | ./view.py # Process netlist, redirect to "anim" file. -python3 pcb.py --v 1 examples/netlist.pcb > anim +./pcb.py --v 1 examples/netlist.pcb > anim # View "anim" file using aggDraw. -python3 view.py anim +./view.py anim # View "anim" file using matplotlib -python3 view_mpl.py anim +./view_mpl.py anim ```