mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 21:49:06 -04:00
9 lines
79 B
Awk
Executable File
9 lines
79 B
Awk
Executable File
#
|
|
# delete duplicate lines
|
|
#
|
|
{
|
|
if (old != $0)
|
|
printf "%s\n", $0
|
|
old = $0
|
|
}
|