tiny tweak to examples/functions/autoload.v3 (email addresses)

2025-04-11 Thread Mark Kennedy
From 29e0bd45dd449cf67787d23ea482b54ddb435690 Mon Sep 17 00:00:00 2001 From: "Mark T. Kennedy" Date: Fri, 11 Apr 2025 19:22:05 -0400 Subject: [PATCH] Update mtk's email addresses Signed-off-by: Mark T. Kennedy --- examples/functions/autoload.v3 | 4 ++-- 1 file changed, 2 insertions(+), 2 dele

Re: /dev/tcp feature request...

2025-04-11 Thread microsuxx
++ On Fri, Apr 11, 2025, 17:21 Chet Ramey wrote: > On 4/11/25 11:03 AM, microsuxx wrote: > > same error as eof i'd say .. > > No. The file descriptor is invalid. There is a difference between a read > error (-1/EINVAL) and EOF (0). > > -- > ``The lyf so short, the craft so long to lerne.'' - Cha

Re: Make cd built-in as resilient as mkdir -p built-in

2025-04-11 Thread Chet Ramey
On 4/10/25 12:29 PM, Laurent Lyaudet wrote: Hello :), Recently, I noticed during tests that mkdir -p can handle paths beyond PATH_MAX that is currently 4096. But cd cannot do this. POSIX requires cd to fail in this case, leaving the current directory unchanged. -- ``The lyf so short, the cra

Re: /dev/tcp feature request...

2025-04-11 Thread Chet Ramey
On 4/10/25 7:51 PM, A. James Lewis wrote: I'm not quite sure about that, I would be trying to get back the file descriptor to use for a period and then close it... so if it fails to open, then I don't know if "redirection error" makes sense, but then again, I'm not sure what would the correct err

Re: /dev/tcp feature request...

2025-04-11 Thread Chet Ramey
On 4/11/25 11:03 AM, microsuxx wrote: same error as eof i'd say .. No. The file descriptor is invalid. There is a difference between a read error (-1/EINVAL) and EOF (0). -- ``The lyf so short, the craft so long to lerne.'' - Chaucer ``Ars longa, vita brevis'' - Hippocrates Ch

Re: /dev/tcp feature request...

2025-04-11 Thread microsuxx
same error as eof i'd say .. On Fri, Apr 11, 2025, 01:53 A. James Lewis wrote: > I'm not quite sure about that, I would be trying to get back the file > descriptor to use for a period and then close it... so if it fails to > open, then I don't know if "redirection error" makes sense, but then >