bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: '/inet' problem of gawk in CVS


From: Hirofumi Saito
Subject: Re: '/inet' problem of gawk in CVS
Date: Mon, 23 Jun 2008 02:02:12 +0900

On Thu, 19 Jun 2008 22:22:56 +0900
Hirofumi Saito <address@hidden> wrote:
> I built gawk of latest CVS tree.
> I did just like below:
> 
> $ ./configure && make
> 
> 'make check' has been passed, but gawk cannot access '/inet' in Fedora 8.
> I tested with simple script.
> 
> $ cat test.awk
> #! /usr/bin/gawk -f
> BEGIN {
>     RS = ORS = "\r\n";
>     HttpService = "/inet/tcp/0/www.yahoo.com/80";
>     print "GET http://www.yahoo.com"; |& HttpService;
>     while ((HttpService |& getline) > 0) {
>         print $0;
>     }
>     close(HttpService);
> }
> 
> $ LC_ALL=C ./gawk -f test.awk
> sh: /inet/tcp/0/www.yahoo.com/80: No such file or directory

I've checked the latest awk at 2008-06-23 in my Fedora 8.
The latest gawk at 2008-06-23 can access to '/inet'.

Thanks,

Hirofumi.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]