Michael G Schwern <[EMAIL PROTECTED]> wrote
> No, you've only got two args to play with.  This is the equivalent
> 5.005-ism.
> 
>     open(REALPATH, "-|") || exec '/usr/bin/fullpath', '-t', $path;

Except that you haven't covered error cases.   More correct is

     open(REALPATH, qq(/usr/bin/fullpath -t "$path" |) )


Mike Guy

Reply via email to