7 lines
182 B
Bash
Executable file
7 lines
182 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Finds double words the HISTORY file, starting with 2022.
|
|
|
|
LANG=C; export LANG
|
|
|
|
sed '1,/^2022/d' HISTORY | mantools/find-double | grep -F -vxf proto/stop.double-history
|