summaryrefslogtreecommitdiff
path: root/Build/tools/htmltext
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-06-09 20:12:47 +0000
committerKarl Berry <karl@freefriends.org>2008-06-09 20:12:47 +0000
commitc2ded34c4ac6a32fbed94b870481aaf9667fc227 (patch)
treecc7b9d209a306f44bc962ea8d7357307b9460ca9 /Build/tools/htmltext
parent07b1dd24a6c6ca7ac335c56b3cc3127bd7910619 (diff)
move autoupdate scripts to new tools bindir
git-svn-id: svn://tug.org/texlive/trunk@8623 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/tools/htmltext')
-rwxr-xr-xBuild/tools/htmltext23
1 files changed, 0 insertions, 23 deletions
diff --git a/Build/tools/htmltext b/Build/tools/htmltext
deleted file mode 100755
index c41eb2490fe..00000000000
--- a/Build/tools/htmltext
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-# $Id$
-# Public domain. Originally written 2003, Karl Berry.
-# Dump a url (or -stdin) to text using lynx.
-
-PATH=/usr/local/bin:$PATH
-
-HOME=/tmp; export HOME
-TERM=vt100; export TERM
-: ${LYNX_CFG=/home/tug/.lynxcfg}; export LYNX_CFG
-# just contains the line JUSTIFY:FALSE.
-
-test $# -eq 0 && set - -stdin
-
-for url in "$@"; do
- # when we add -width=79, tables are formatted badly.
- # -dump lists url's like this with -stdin (lynx 2.8.4, linux):
- # file://localhost/tmp/89inmk/FAQ/german
- # Since the reference list is useful, we fix it up by hand instead of
- # using -nolist.
- lynx -dump -nocolor -hiddenlinks=ignore "$url" \
- | sed 's,file://localhost/tmp/[a-zA-Z0-9]*/,,'
-done