aboutsummaryrefslogtreecommitdiffstats
path: root/awklib/eg/network/catpipeclient.awk
blob: c129a1ec0e705dd1b879d8760182dd7c7da36cb0 (plain)
1
2
3
4
5
6
7
BEGIN {
  NetService = "/inet/tcp/0/localhost/8888"
  print "README" |& NetService
  while ((NetService |& getline) > 0)
    print $0
  close(NetService)
}