From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from minnie.tuhs.org (minnie.tuhs.org [45.79.103.53]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id c63b0647 for ; Wed, 5 Jun 2019 12:50:59 +0000 (UTC) Received: by minnie.tuhs.org (Postfix, from userid 112) id 68BDC9B805; Wed, 5 Jun 2019 22:50:58 +1000 (AEST) Received: from minnie.tuhs.org (localhost [127.0.0.1]) by minnie.tuhs.org (Postfix) with ESMTP id 54E4E9B684; Wed, 5 Jun 2019 22:50:33 +1000 (AEST) Received: by minnie.tuhs.org (Postfix, from userid 112) id A18079B684; Wed, 5 Jun 2019 22:50:31 +1000 (AEST) Received: from freefriends.org (freefriends.org [96.88.95.60]) by minnie.tuhs.org (Postfix) with ESMTPS id 4B8C89B682 for ; Wed, 5 Jun 2019 22:50:31 +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 x55CoSlV005468 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 5 Jun 2019 06:50:29 -0600 Received: (from arnold@localhost) by freefriends.org (8.14.7/8.14.7/Submit) id x55CoSxK005467; Wed, 5 Jun 2019 06:50:28 -0600 From: arnold@skeeve.com Message-Id: <201906051250.x55CoSxK005467@freefriends.org> X-Authentication-Warning: frenzy.freefriends.org: arnold set sender to arnold@skeeve.com using -f Date: Wed, 05 Jun 2019 06:50:28 -0600 To: tuhs@tuhs.org, edouardklein@gmail.com References: <87blzcmckd.fsf@plume.lan> In-Reply-To: <87blzcmckd.fsf@plume.lan> User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: [TUHS] Scratch files in csh X-BeenThere: tuhs@minnie.tuhs.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: The Unix Heritage Society mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: tuhs-bounces@minnie.tuhs.org Sender: "TUHS" Edouard Klein wrote: > Hi all, > > I saw this on https://old.reddit.com/r/unix : > > http://blog.snailtext.com/posts/no-itch-to-scratch.html > > It's about (the lack of) scratch files in csh. Maybe somebody here know > what happened to the feature ? > > Cheers, > > Edouard. >From the phraseology in the paper ("The system will remove ....") it sounds to me like it was not a csh feature at all, but rather that the UCB systems had a cron job to run something like find / -name '#*' -mtime +7 -exec rm {} \; It's easy enough to research this in the archives, if you have the energy. :-) HTH, Arnold