From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 10373 invoked from network); 22 Jan 2023 14:53:19 -0000 Received: from minnie.tuhs.org (50.116.15.146) by inbox.vuxu.org with ESMTPUTF8; 22 Jan 2023 14:53:19 -0000 Received: from minnie.tuhs.org (localhost [IPv6:::1]) by minnie.tuhs.org (Postfix) with ESMTP id BCF2D4257C; Mon, 23 Jan 2023 00:53:05 +1000 (AEST) Received: from freefriends.org (freefriends.org [96.88.95.60]) by minnie.tuhs.org (Postfix) with ESMTPS id B485D4257B for ; Mon, 23 Jan 2023 00:52:56 +1000 (AEST) X-Envelope-From: arnold@skeeve.com Received: from freefriends.org (freefriends.org [96.88.95.60]) by freefriends.org (8.14.7/8.14.7) with ESMTP id 30MEqsim025403 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sun, 22 Jan 2023 07:52:54 -0700 Received: (from arnold@localhost) by freefriends.org (8.14.7/8.14.7/Submit) id 30MEqrRq025402; Sun, 22 Jan 2023 07:52:53 -0700 From: arnold@skeeve.com Message-Id: <202301221452.30MEqrRq025402@freefriends.org> X-Authentication-Warning: frenzy.freefriends.org: arnold set sender to arnold@skeeve.com using -f Date: Sun, 22 Jan 2023 07:52:53 -0700 To: tuhs@tuhs.org, robpike@gmail.com References: In-Reply-To: User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID-Hash: 4YCRFYRGJDY2S4DCGG6JLYGSXYYW2L33 X-Message-ID-Hash: 4YCRFYRGJDY2S4DCGG6JLYGSXYYW2L33 X-MailFrom: arnold@skeeve.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-tuhs.tuhs.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.6b1 Precedence: list Subject: [TUHS] Re: v8 shell List-Id: The Unix Heritage Society mailing list Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Geoff Collyer has made the 9th edition shell available: http://www.collyer.net/who/geoff/v9sh.tar Arnold Rob Pike wrote: > Found this tweetstream, here folded together, when looking for something > else (now lost) in my twitter archive: > > ========== > > Things I miss from the v8 shell. > > 1) All shell output was valid shell input. > > 2) Typing dir/cmd would find the command $PATH/dir/cmd. Subdirectories of > your bin, in other words. > > 3) Functions were exportable. For one brief shining POSIX meeting, that was > true in POSIX too but then... > > 4) The implementation was lovely and easy to understand. (No, it wasn't > shalgol. Bourne fixed that for us.) > > 5) That I could learn things from it, like how to write a recursive descent > parser.* > > 6) It ran in cooked mode. > > As expected, all that work making it a great shell is lost to history. > https://t.co/IzApAUSmzN is silent. Well, the code is released now. > > > ========== > > -rob > > * elegantly.