svn commit: r362615 - head/usr.bin/limits

Fernando Apesteguía fernape at FreeBSD.org
Thu Jun 25 16:46:28 UTC 2020


Author: fernape (ports committer)
Date: Thu Jun 25 16:46:27 2020
New Revision: 362615
URL: https://svnweb.freebsd.org/changeset/base/362615

Log:
  limits(1): Add EXAMPLES section
  
   * Add four examples showing flags -e, -b, -d, -s
   * Remove extra space at the end of the line reported by igor
  
  Approved by:	bcr@
  Differential Revision:	https://reviews.freebsd.org/D25426

Modified:
  head/usr.bin/limits/limits.1

Modified: head/usr.bin/limits/limits.1
==============================================================================
--- head/usr.bin/limits/limits.1	Thu Jun 25 15:25:00 2020	(r362614)
+++ head/usr.bin/limits/limits.1	Thu Jun 25 16:46:27 2020	(r362615)
@@ -19,7 +19,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd May 26, 2020
+.Dd June 25, 2020
 .Dt LIMITS 1
 .Os
 .Sh NAME
@@ -376,6 +376,44 @@ exits with a status of
 .Dv EXIT_SUCCESS .
 When run in command mode and execution of the command succeeds, the exit status
 will be whatever the executed program returns.
+.Sh EXAMPLES
+Show current stack size limit:
+.Bd -literal -offset indent
+$ limits -s
+Resource limits (current):
+	  stacksize              524288 kB
+.Ed
+.Pp
+Try to run
+.Xr ls 1
+with 1 byte of
+.Va datasize
+limit:
+.Bd -literal -offset indent
+$ limits -d 1b ls
+Data segment size exceeds process limit
+Abort trap
+.Ed
+.Pp
+Produce
+.Ql eval mode
+output to limit
+.Va sbsize
+to 1 byte.
+Output obtained when command is run from
+.Xr sh 1 :
+.Bd -literal -offset indent
+$ limits -e -b 1b
+ulimit -b 512;
+.Ed
+.Pp
+Same as above from
+.Xr csh 1
+.Bd -literal -offset indent
+% limits -e -b 1b
+limit -h sbsize 512;
+limit sbsize 512;
+.Ed
 .Sh SEE ALSO
 .Xr csh 1 ,
 .Xr env 1 ,
@@ -396,7 +434,7 @@ utility first appeared in
 The
 .Nm
 utility was written by
-.An David Nugent Aq Mt davidn at FreeBSD.org . 
+.An David Nugent Aq Mt davidn at FreeBSD.org .
 .Sh BUGS
 The
 .Nm


More information about the svn-src-all mailing list