mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 13:34:28 +00:00
21 lines
169 B
Awk
21 lines
169 B
Awk
|
#!/usr/bin/awk -f
|
||
|
|
||
|
BEGIN{
|
||
|
old = "first"
|
||
|
}
|
||
|
|
||
|
{
|
||
|
if($1 != old){
|
||
|
if(old != "first"){
|
||
|
print oldAll
|
||
|
}
|
||
|
}
|
||
|
old=$1
|
||
|
oldAll=$0
|
||
|
}
|
||
|
|
||
|
END{
|
||
|
print oldAll
|
||
|
}
|
||
|
|