Sponsored Content
Top Forums Shell Programming and Scripting The efficiency between GREP and SED??? Post 302452942 by Corona688 on Monday 13th of September 2010 01:15:41 PM
Old 09-13-2010
Unless you need to process lots of them or process within a short time limit, 22 megs really isn't that big these days anyway.
 

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

efficiency..

how efficient is it, and how practical is it to call outside programs in a shell script (bash) for small tasks? for example, say i have a script that might preform many tasks, one of those tasks may require root access; rather than implementing inside the script a method to use su or sudo to... (11 Replies)
Discussion started by: norsk hedensk
11 Replies

2. Shell Programming and Scripting

Perl: code efficiency for gmtime

I have the following Perl snippet: # get datetime @dt = gmtime(); $strdate = 1900 + $dt . addleadingzero(++$dt) . addleadingzero($dt) . addleadingzero($dt) . addleadingzero($dt) . addleadingzero($dt); # write to file $outfile = $strdate . ".txt"; getstore($url, $outfile) or die "Error:... (3 Replies)
Discussion started by: figaro
3 Replies

3. Shell Programming and Scripting

Improve program efficiency (awk)

Hi !! I've finished an awk exercise. Here it is: #!/bin/bash function calcula { # Imprimimos el mayor tamaño de fichero ls -l $1 | awk ' BEGIN { max = $5; # Inicializamos la variable que nos guardará el máximo con el tamaño del primer archivo } { if ($5 > max){ #... (8 Replies)
Discussion started by: Phass
8 Replies

4. Shell Programming and Scripting

File or Folder Efficiency?

I've got this program set up so that it creates files whose unique names specify the jobs their contents describe. In order to retrieve the information inside those files, I have to do a "grep" and awk or sed to extract it. I've just assumed that making a directory with that unique name that... (1 Reply)
Discussion started by: gmark99
1 Replies

5. UNIX for Advanced & Expert Users

About efficiency of parallel memory allocation

Hello, there. I'm a new beginner to Linux kernel and curious about its memory management. When multiple applications apply for memory space at the same time, how Linux kernel solve the resource contending problem for high performance? I have known that there is a buddy system for allocating and... (4 Replies)
Discussion started by: blackwall
4 Replies
getrlimit(2)							System Calls Manual						      getrlimit(2)

Name
       getrlimit, setrlimit - control maximum system resource consumption

Syntax
       #include <sys/time.h>
       #include <sys/resource.h>

       getrlimit(resource, rlp)
       int resource;
       struct rlimit *rlp;

       setrlimit(resource, rlp)
       int resource;
       struct rlimit *rlp;

Description
       Limits on the consumption of system resources by the current process and each process it creates can be obtained with the call and set with
       the call.

       The resource parameter is one of the following:

       RLIMIT_CPU	the maximum amount of cpu time (in milliseconds) to be used by each process.

       RLIMIT_FSIZE	the largest size, in bytes, of any single file that may be created.

       RLIMIT_DATA	the maximum size, in bytes, of the data segment for a process.	This limit defines how far a program can extend its  break
			with the system call.

       RLIMIT_STACK	the  maximum size, in bytes, of the stack segment for a process.  This limit defines how far a program's stack segment can
			be extended, either automatically by the system or explicitly by a user, with the system call.

       RLIMIT_CORE	the largest size, in bytes, of a core file that may be created.

       RLIMIT_RSS	the maximum size, in bytes, to which a process's resident set size may grow when there is a shortage of free physical mem-
			ory.   Exceeding  this	limit  when  free physical memory is in short supply results in an unfavorable scheduling priority
			being assigned to the process.

       A resource limit is specified as a soft limit and a hard limit.	When a soft limit is exceeded, a process may receive a signal  (for  exam-
       ple,  if  the cpu time is exceeded), but it will be allowed to continue execution until it reaches the hard limit (or modifies its resource
       limit).	The system uses just the soft limit field of the resources RLIMIT_CORE and RLIMIT_RSS. The rlimit structure is used to specify the
       hard and soft limits on a resource, as shown:
       struct rlimit {
	    int  rlim_cur; /* current (soft) limit */
	    int  rlim_max; /* hard limit */
       };

       Only  the  superuser  may  raise  the maximum limits.  Other users may alter rlim_cur within the range from 0 to rlim_max or (irreversibly)
       lower rlim_max.

       An "infinite" value for a limit is defined as RLIM_INFINITY (0x7fffffff).

       Because this information is stored in the per-process information, this system call must be executed directly by the  shell  if	it  is	to
       affect all future processes created by the shell; limit is thus a built-in command to

       The  system  refuses  to extend the data or stack space when the limits would be exceeded in the normal way: a break call fails if the data
       space limit is reached, or the process is killed when the stack limit is reached.  Because the stack cannot be extended, there is no way to
       send a signal.

       A  file	I/O  operation	that  creates  too  large a file causes the SIGXFSZ signal to be generated. This condition normally terminates the
       process, but may be caught.  When the soft cpu time limit is exceeded, a signal SIGXCPU is sent to the process.

Return Values
       A 0 return value indicates that the call succeeded, changing or returning the resource limit.   A return value  of  -1  indicates  that	an
       error occurred, and an error code is stored in the global location errno.

Environment
   System Five
       When your program is compiled in the System V environment, the SIGXFSZ signal is not generated.

Diagnostics
       The call fails under the following conditions:

       [EFAULT]       The address specified for rlp is invalid.

       [EPERM]	      The limit specified to would have raised the maximum limit value, and the caller is not the superuser.

       [EINVAL]       Resource is greater than or equal to RLIM_NLIMITS.

See Also
       csh(1), quota(2)

																      getrlimit(2)
All times are GMT -4. The time now is 02:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy