From 944d72963926679a269cec39063fe921fdfb73ff Mon Sep 17 00:00:00 2001 From: joerg Date: Thu, 19 Oct 1995 18:42:12 +0000 Subject: 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. --- bin/sh/builtins | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/sh/builtins') diff --git a/bin/sh/builtins b/bin/sh/builtins index 9624718..a0b0f8f 100755 --- a/bin/sh/builtins +++ b/bin/sh/builtins @@ -35,7 +35,7 @@ # SUCH DAMAGE. # # @(#)builtins 8.1 (Berkeley) 5/31/93 -# $Id$ +# $Id: builtins,v 1.2 1994/09/24 02:57:23 davidg Exp $ # # This file lists all the builtin commands. The first column is the name @@ -83,6 +83,7 @@ setvarcmd setvar shiftcmd shift trapcmd trap truecmd : true +ulimitcmd ulimit umaskcmd umask unaliascmd unalias unsetcmd unset -- cgit v1.1