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.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,DKIM_VALID_EF,MAILING_LIST_MULTI,PLING_QUERY, 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 3ae02164 for ; Tue, 22 Oct 2019 20:09:25 +0000 (UTC) Received: by minnie.tuhs.org (Postfix, from userid 112) id 227229BC95; Wed, 23 Oct 2019 06:09:24 +1000 (AEST) Received: from minnie.tuhs.org (localhost [127.0.0.1]) by minnie.tuhs.org (Postfix) with ESMTP id 63B979BC4C; Wed, 23 Oct 2019 06:08:58 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=tuhs.org; s=dkim; t=1571774957; bh=RHbo9Ahhltw1kWAB6VlzlcntDB2TxJz3bRHqKvLxiFo=; h=Date:From:To:References:In-Reply-To:Subject:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: Cc:From; b=6uEDkJUy0jal8+rRFE/g9TEVZ8eS4etMwV8Gzsp4q+uxQ9m7XDCgN2De9RSiGL+U3 w+IpFYQn7Quhaa7wCw5rHFaSE1GzH2sNaMkX+3xz2bu4shUvYTul/YTARyanp5Bx4K 0ej3Q096lf1Uyxm6FZZER73U9JIdLTLdKgDce6I8= Received: by minnie.tuhs.org (Postfix, from userid 1000) id 2440D93D06; Wed, 23 Oct 2019 06:08:55 +1000 (AEST) Date: Wed, 23 Oct 2019 06:08:55 +1000 From: Warren Toomey To: Abhinav Rajagopalan Message-ID: <20191022200855.GA16140@minnie.tuhs.org> References: <20191022133613.D6E8C18C0B7@mercury.lcs.mit.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [TUHS] What was your "Aha, Unix!" moment? 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: , Cc: tuhs@minnie.tuhs.org Errors-To: tuhs-bounces@minnie.tuhs.org Sender: "TUHS" On Tue, Oct 22, 2019 at 07:52:32PM +0530, Abhinav Rajagopalan wrote: > On a somewhat related note, if someone could shine some light on, if > such chdir() which wasn't yet integrated into the shell function > independent of fork() as in did fork() just spawn off a new child shell > if one did chdir() or more generally how did processes interact when/if > more than one child existed. I know PDP-7 had some archaic IPC but > haven't gotten around to grokking fork.s or others to understand the > actual operation. The best place to learn all this is Dennis' paper on the Evolution of Unix: http://www.read.seas.harvard.edu/~kohler/class/aosref/ritchie84evolution.pdf Cheers, Warren