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

9 lines
209 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
BEGIN {
NetService = "/inet/tcp/8888/0/0"
NetService |& getline # sets $0 and the fields
CatPipe = ("cat " $1)
while ((CatPipe | getline) > 0)
print $0 |& NetService
close(NetService)
}