mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
8 lines
79 B
Awk
Executable file
8 lines
79 B
Awk
Executable file
#
|
|
# delete duplicate lines
|
|
#
|
|
{
|
|
if (old != $0)
|
|
printf "%s\n", $0
|
|
old = $0
|
|
}
|