ubuntu-buildroot/output/build/host-gawk-5.2.0/awklib/eg/network/fingerclient.awk

9 lines
232 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
BEGIN {
finger_server = "andrew.cmu.edu"
finger_connection = "/inet/tcp/0/" finger_server "/finger"
print "wnace" |& finger_connection
while ((finger_connection |& getline) > 0)
print $0
close(finger_connection)
}