mirror of
https://github.com/opnsense/src.git
synced 2026-03-14 22:53:16 -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;
|
|
}
|