NetBSD-Bugs archive

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

Re: bin/58690: ksh: "command" doesn't make special builtins not special



The following reply was made to PR bin/58690; it has been noted by GNATS.

From: Valery Ushakov <uwe%stderr.spb.ru@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc: 
Subject: Re: bin/58690: ksh: "command" doesn't make special builtins not
 special
Date: Mon, 23 Sep 2024 20:19:08 +0300

 On Mon, Sep 23, 2024 at 17:10:02 +0000, Robert Elz via gnats wrote:
 >  If you desire a ksh style interface
 
 I don't, but I was touching the profile/shrc files and they have to
 work with the ksh we ship.  ksh doesn't have "tabcomplete" option, so
 
     set -o tabcomplete
 
 will cause it to exit.  The usual feint of
 
     command set -o tabcomplete 2> /dev/null
 
 doesn't work b/c of this bug, so we have instead
 
   ( set -o tabcomplete 2>/dev/null ) && set -o tabcomplete
 
 in /etc/shrc, a mouthful...
 
 
 -uwe
 


Home | Main Index | Thread Index | Old Index