ref: 6184a4ef2eba1d49f0386e9ce94f4877d3d9edb2
dir: /sys/src/cmd/python/Doc/tools/cklatex/
#! /bin/sh # -*- ksh -*- # This script *helps* locate lines of normal content that end in '}'; # this is useful since LaTeX2HTML (at least the old version that we # use) breaks on many lines that end that way. # # Usage: cklatex files... | less # # *Read* the output looking for suspicious lines! grep -n "[^ ]}\$" $@ | \ grep -v '\\begin{' | \ grep -v '\\end{' | \ grep -v '\\input{' | \ grep -v '\\documentclass{' | \ grep -v '\\title{' | \ grep -v '\\chapter{' | \ grep -v '\\chapter\*{' | \ grep -v '\\section{' | \ grep -v '\\subsection{' | \ grep -v '\\subsubsection{' | \ grep -v '\\sectionauthor{' | \ grep -v '\\moduleauthor{' exit $?