mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
13 lines
189 B
Awk
13 lines
189 B
Awk
NF == 2 {
|
|
if($2 !~ / or / || $2 ~ /\(or/)
|
|
print $0
|
|
else {
|
|
n = split($2, a, / or /)
|
|
for(i = 1; i <= n; i++) {
|
|
printf "%s\t%s\n", $1, a[i]
|
|
}
|
|
}
|
|
}
|
|
NF != 2 {
|
|
print $0
|
|
}
|