mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
7 lines
161 B
Awk
7 lines
161 B
Awk
BEGIN {
|
|
NetService = "/inet/tcp/0/localhost/finger"
|
|
print "var{name}" |& NetService
|
|
while ((NetService |& getline) > 0)
|
|
print $0
|
|
close(NetService)
|
|
}
|