From ddc6816246140f30a1fbb3742e5b236708cd2b88 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Mon, 21 Sep 2020 10:57:19 -0400 Subject: [PATCH] Use full line as element of sequence --- home/bin/seq2dot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/bin/seq2dot b/home/bin/seq2dot index b79c8e4..d91e45b 100755 --- a/home/bin/seq2dot +++ b/home/bin/seq2dot @@ -8,7 +8,7 @@ BEGIN {print "digraph {"} { prev = prev ? prev : "--" - curr = $1 + curr = $0 ++nlinks[prev] ++nlinks_to[prev, curr] prev = curr -- 2.20.1