Home | History | Annotate | Line # | Download | only in mantools
      1  1.1  christos #!/bin/sh
      2  1.1  christos 
      3  1.1  christos # Spellchecks text in the HISTORY file, starting with 2022.
      4  1.1  christos 
      5  1.1  christos LANG=C; export LANG
      6  1.1  christos 
      7  1.1  christos sed '1,/^2022/d' HISTORY | spell | grep -F -vxf proto/stop | \
      8  1.1  christos 	grep -F -vxf proto/stop.spell-cc | \
      9  1.1  christos 	grep -F -vxf proto/stop.spell-history
     10