From 03860d2a744368b3514087943f2694485e56224d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karlo=20Mili=C4=8Devi=C4=87?= Date: Thu, 29 May 2025 20:12:47 +0200 Subject: Initial commit --- graph.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 graph.sh (limited to 'graph.sh') diff --git a/graph.sh b/graph.sh new file mode 100755 index 0000000..da8f49c --- /dev/null +++ b/graph.sh @@ -0,0 +1,6 @@ +#!/bin/sh +( + echo "digraph {" + grep ' ' | sed 's/\(.*\) \(.*\)/\t\2->\1;/' + echo "}" +) | dot -Tpng | feh - -- cgit v1.2.3