From 946d9181bf528d4d67feb88b4245ebe63ad4d71a Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 22 Mar 2012 11:43:35 +0100 Subject: remove link numbers in lynx -dump output If numbers are enabled and we dump the whole page, all subsequent links will have different numbers if one new link is added at the top. This generates a very long diff with essentially no changes and makes spotting multiple new links on one page quite hard. Signed-off-by: Florian Pritz Signed-off-by: Pierre Schmitz --- w3watch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/w3watch b/w3watch index 71d4951..f61c760 100755 --- a/w3watch +++ b/w3watch @@ -64,7 +64,7 @@ check() { url="$(echo "${url}" | cut -c 1 --complement -)" dump=$($LYNX -source "$url") else - dump=$($LYNX -dump "$url") + dump=$($LYNX -dump -nonumbers "$url") fi if [ $? -ne 0 ]; then -- cgit v1.2.3-24-g4f1b