#!/bin/sh dir="$HOME"/ncurses-HEAD/share/man # gzip -dc $(find "$dir" -type f | sort) \ # | nroff -t -ww -dAD=l -rHY=0 -rCHECKSTYLE=2 -man #find "$dir" -type f | sort | xargs cat \ # | nroff -t -ww -dAD=l -rHY=0 -rCHECKSTYLE=3 -man for f in $(find "$dir" -type f -and -not -type l | sort) do nroff -t -z -ww -dAD=l -rHY=0 -rCHECKSTYLE=2 -man "$f" grep -v -H '^\.\\"' "$f" | grep 3X done exit 0