From owner-cvs-bin Mon Oct 21 00:30:35 1996 Return-Path: owner-cvs-bin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA28791 for cvs-bin-outgoing; Mon, 21 Oct 1996 00:30:35 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA28776; Mon, 21 Oct 1996 00:30:29 -0700 (PDT) Date: Mon, 21 Oct 1996 00:30:29 -0700 (PDT) From: Peter Wemm Message-Id: <199610210730.AAA28776@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-bin Subject: cvs commit: src/bin/ps extern.h print.c ps.1 ps.c Sender: owner-cvs-bin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 96/10/21 00:30:28 Modified: bin/ps extern.h print.c ps.1 ps.c Log: Implement a -c option to ps to display the short command name instead of the full argument vector. I've bumped into a few things that expected this switch to be present, the most recent was the snmp package in ports. I'm not 100% sure of the origins of this, but Linux has it, so does the "BSD-compatable" version of ps on our SVR4 systems (so I assume SunOS has it too). Revision Changes Path 1.3 +2 -2 src/bin/ps/extern.h 1.16 +8 -2 src/bin/ps/print.c 1.11 +5 -2 src/bin/ps/ps.1 1.13 +9 -5 src/bin/ps/ps.c From owner-cvs-bin Mon Oct 21 20:02:21 1996 Return-Path: owner-cvs-bin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id UAA09616 for cvs-bin-outgoing; Mon, 21 Oct 1996 20:02:21 -0700 (PDT) Received: (from steve@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id UAA09593; Mon, 21 Oct 1996 20:02:10 -0700 (PDT) Date: Mon, 21 Oct 1996 20:02:10 -0700 (PDT) From: Steve Price Message-Id: <199610220302.UAA09593@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-bin Subject: cvs commit: src/bin/sh eval.c Sender: owner-cvs-bin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk steve 96/10/21 20:02:09 Modified: bin/sh eval.c Log: Close PR# 1206. sh(1) now ignores SIGINT and SIGQUIT when a child is forked and the -c commandline switch has been specified. Reviewed by: joerg Revision Changes Path 1.7 +19 -3 src/bin/sh/eval.c From owner-cvs-bin Fri Oct 25 07:49:41 1996 Return-Path: owner-cvs-bin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA24784 for cvs-bin-outgoing; Fri, 25 Oct 1996 07:49:41 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA24768; Fri, 25 Oct 1996 07:49:29 -0700 (PDT) Date: Fri, 25 Oct 1996 07:49:29 -0700 (PDT) From: Bruce Evans Message-Id: <199610251449.HAA24768@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-bin Subject: cvs commit: src/bin/sh Makefile Sender: owner-cvs-bin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 96/10/25 07:49:28 Modified: bin/sh Makefile Log: Build intermediate object files for mkinit, mknodes and mksyntax so that simple regresssion tests based on `cmp' work. mkdep still doesn't work right for these tools. They should probably be in separate directories. Sorted dependencies. Revision Changes Path 1.15 +19 -6 src/bin/sh/Makefile