/usr/lib/noweb/h2a is in noweb 2.11b-11.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/sh
opts="-nolist"
case $1 in
-[0-9]*) opts="$opts -width=`expr 0 - $1`" ; shift ;;
esac
html=`tempfile` || { echo "$0: Cannot create temporary file" >&2; exit 1; }
trap 'rm -f $html; exit 1' 1 2 15 # clean up files
awk '
/^ *$/ { if (NR == 1) { print ; next } }
{ print > "'"$html"'" }'
if [ -r $html ]; then lynx -dump $opts $html | sed '1d'; fi
rm -f $html
|