mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
9 lines
132 B
Awk
9 lines
132 B
Awk
BEGIN {
|
|
IGNORECASE=1
|
|
FS="[^a-z]+"
|
|
}
|
|
{
|
|
for (i=1; i<NF; i++) printf "%s, ", $i
|
|
printf "%s\n", $NF
|
|
}
|