mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
8 lines
67 B
Awk
8 lines
67 B
Awk
{
|
|
gsub(/x/, " ")
|
|
$0 = $0
|
|
print $1
|
|
print $0
|
|
print $1, $2, $3
|
|
}
|