slackpkg/files/cutpkg.awk

9 lines
77 B
Awk
Raw Normal View History

OFS="-" {
if ( NF > 3 ) {
NF=NF-3
print $0
} else {
print $0
}
}