mirror of
https://github.com/opnsense/src.git
synced 2026-03-12 21:52:51 -04:00
7 lines
144 B
Awk
7 lines
144 B
Awk
BEGIN {
|
|
for (idx = 1; idx < ARGC; idx++)
|
|
split(ARGV[idx], temp, ".");
|
|
}
|
|
{
|
|
print $0;
|
|
}
|