blob: c17000be0ab571b5318f536a94e19123ed49d971 (
plain)
1
2
3
4
5
6
7
8
9
|
BEGIN {
daytime_server = "time-a-g.nist.gov"
daytime_connection = "/inet/tcp/0/" daytime_server "/daytime"
daytime_connection |& getline
print $0
daytime_connection |& getline
print $0
close(daytime_connection)
}
|