From cdda351c057735b43a08bef3d332d21ee722ed59 Mon Sep 17 00:00:00 2001 From: Rob Pearce Date: Sun, 30 Jun 2024 09:54:34 +1000 Subject: [PATCH] dont show links with lynx --- tostracker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tostracker.sh b/tostracker.sh index 853fa59..3bfa98f 100755 --- a/tostracker.sh +++ b/tostracker.sh @@ -84,7 +84,7 @@ function getcontent() { # 1=url 2=outputfile local outfile="$2" if [[ -n $LYNX ]]; then - curl -sL "$url" | ${LYNX} -stdin -dump -list_inline > "${outfile}" + curl -sL "$url" | ${LYNX} -stdin -dump -nolist > "${outfile}" else curl -sL "$url" | ${SED} 's/>/>\n/g;s/$" > "${outfile}" fi