From owner-cvs-bin Fri Nov 3 10:50:21 1995 Return-Path: owner-cvs-bin Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA23057 for cvs-bin-outgoing; Fri, 3 Nov 1995 10:50:21 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA23038 ; Fri, 3 Nov 1995 10:50:16 -0800 Date: Fri, 3 Nov 1995 10:50:16 -0800 From: Peter Wemm Message-Id: <199511031850.KAA23038@freefall.freebsd.org> To: cvs-bin, CVS-commiters Subject: cvs commit: src/bin/sh input.c Sender: owner-cvs-bin@FreeBSD.org Precedence: bulk peter 95/11/03 10:50:15 Modified: bin/sh input.c Log: Implement allowing 'set -v' in the middle of a script to work. This means that a script containing: echo 1 set -v echo 2 will now produce output, like it does on SYSV machines and other 'proper' /bin/sh implementations.. This is done by a slight restructure of the input processor allowing it to read chunks from the file at a time, but process the data by line from the chunk. Obtained from: Christos Zoulas for NetBSD.