From owner-cvs-bin Thu Oct 19 18:28:49 1995 Return-Path: owner-cvs-bin Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA08795 for cvs-bin-outgoing; Thu, 19 Oct 1995 18:28:49 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id SAA08787 ; Thu, 19 Oct 1995 18:28:39 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id LAA08440; Fri, 20 Oct 1995 11:25:19 +1000 Date: Fri, 20 Oct 1995 11:25:19 +1000 From: Bruce Evans Message-Id: <199510200125.LAA08440@godzilla.zeta.org.au> To: CVS-commiters@freefall.freebsd.org, cvs-bin@freefall.freebsd.org, joerg@freefall.freebsd.org Subject: Re: cvs commit: src/bin/sh builtins miscbltin.c sh.1 Sender: owner-cvs-bin@FreeBSD.org Precedence: bulk > Modified: bin/sh builtins miscbltin.c sh.1 > Log: > Implement the "ulimit" builtin. This is the analogon to csh's "limit" > command and badly needed in sh(1) for everybody who wants to modify > the system-wide limits from inside /etc/rc. > > The options are similar to other system's implemantations of this > command, with the FreeBSD additions for -m (memoryuse) and -p (max > processes) that are not available on other systems. $bash help ulimit ... -m the maximum resident set size # units of KB ... -p the pipe buffer size # units of 512 bytes :-( ... -u the maximum number of user processes Bruce