Changes.old: Fix script in 2.37 changelog

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2014-02-10 09:46:17 +01:00
parent 0e88a19ef0
commit 76c1fb55a5
1 changed files with 1 additions and 1 deletions

View File

@ -4820,7 +4820,7 @@ Thomas Huriaux / mtk
Various formatting problems found as a result of reviewing the
following command were fixed.
for a in $(wc man?/*.?| awk '$1 > 2 ' | grep -v total); do
for a in $(wc -l man?/*.?| awk '$1 > 2 {print $2}' | grep -v total); do
echo $a; groff -Tascii -wmac -mman $a > /dev/null;
done 2>&1 | less