To Index

 See the UNIX Programmers Manual or via % man csh 


 % limit
  With no arguments it prints the current limitations:

  cputime 	unlimited
  filesize 	unlimited
  datasize 	6112 kbytes
  stacksize 	512 kbytes
  coredumpsize 	unlimited
  memoryuse 	unlimited
 

  Limit can set restrictions on the use of resources, e.g.:

 % limit coredumpsize 128k

  Most reasonable units abbreviations will work; see the
  csh manual page for more details.

To Index