Current File : //proc/thread-self/root/usr/share/doc/gawk/examples/network/catpipeclient.awk
BEGIN {
  NetService = "/inet/tcp/0/localhost/8888"
  print "README" |& NetService
  while ((NetService |& getline) > 0)
    print $0
  close(NetService)
}