mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 21:01:24 -05:00
7 lines
67 B
Awk
7 lines
67 B
Awk
{
|
|
gsub(/x/, " ")
|
|
$0 = $0
|
|
print $1
|
|
print $0
|
|
print $1, $2, $3
|
|
}
|