Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

runlim(1) [debian man page]

RUNLIM(1)						      General Commands Manual							 RUNLIM(1)

NAME
runlim - a program to run benchmarks SYNOPSIS
runlim [ options ...] command [ arguments ...] DESCRIPTION
run is a tool that can be used to run and control benchmarks. It executes a given command with (optional) arguments, samples resource usage during the run, and kills the process (and its child processes) if a certain time and/or space limit is exhausted. Every 100 milliseconds, runlim takes a sample of the program's resource utilization, and logs status information to stderr every second. Optionally, the status can be logged to a file. Multi-threaded programs can be limited by setting a wall clock timeout. runlim follows the time accumulation scheme of GNU time for multi- threaded programs and programs that spawn multiple child-processes: time spent in each thread/child is summed up, unless you are only interested in walk clock time. OPTIONS
runlim accepts the following options: -h, --help Show summary of options. --version Show version of program. -o FILE, --output-file=FILE Overwrite or create FILE for output logging. -s NUM, --space-limit=NUM Set space limit to NUM megabytes. -t NUM, --time-limit=NUM Set time limit to NUM seconds. -r NUM, --real-time-limit=NUM Set real time limit to NUM seconds. -k, --kill Propagate signals. SEE ALSO
time(1), timelimit(1), timeout(1), time(7). AUTHOR
runlim was written by Armin Biere and Toni Jussila. This manual page was written by Thomas Krennwallner <tkren@kr.tuwien.ac.at>, for the Debian project (and may be used by others). February 11, 2011 RUNLIM(1)

Check Out this Related Man Page

RUSHLAST(1)							      Gnurush							       RUSHLAST(1)

NAME
rushlast - retrieve information of previous uses of rush SYNOPSIS
rushlast [-F STRING] [-f DIR] [-n NUM] [--forward] [-H] rushlast {-v | -h | --usage} DESCRIPTION
rushlast is a utility to search backwards in the session history that GNU rush maintains about all users calling on its services. OPTIONS
-F STRING | --format=STRING Use specified format string instead of the default string. -f DIR | --file=DIR Use database directory DIR. Default location is /var/lib/rush. --forward Display entries in chronological instead of reverse time order. The latter is the default mode of operation. -n NUM | --count=NUM | -NUM Show at most NUM records. The numerical form '-NUM' is to provide compatibility with the standard utility last(1). -H | --no-header Suppress the header line in printout. -v | --version Display program version. -h | --help Display a short help message. --usage Display a concise usage summary. SEE ALSO
The full documentation for rushlast is maintained as a Texinfo manual. If the info and rush programs are properly installed at your site, the command info rush should give you access to the complete manual. See also rush(8) and rushwho(1). AUTHOR
This text was written by Mats Erik Andersson for the Debian project, since the original source supplies a documentation only in the form of a GNU Texinfo manual. GNU Rush 1.7 December 2010 RUSHLAST(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

perl code help

if anyone knows how to do the loop and the function listed, please let me know it would be a great help. Thanks! •Create an array NUM with the following ten values in it: 14, 25.6, 43, 22, 412.14, 819, 2, 721, 7.218, 11.9 •Print the array NUM •Create an array COLOR with the following... (1 Reply)
Discussion started by: circleW
1 Replies

2. Programming

running a program for a specified time

how can i run a program for a specified time? i need to print a current time during program execution. (3 Replies)
Discussion started by: prosputko
3 Replies

3. Programming

SIGSEGV, Segmentation fault

Here is my initiating code: #define NUM 20 static struct tab { int count; int use; } tab; int curtab = 0; int tab_create(int tab_count) { curtab++; tab.use = 1; tab.count = tab_count; kprintf("here!"); return curtab; } (2 Replies)
Discussion started by: micmac700
2 Replies

4. UNIX for Advanced & Expert Users

How to prevent gdb to send Interrupt signals to child processes

Hi, I have a program which invokes child processes and communicates with the processes. When I run the program under gdb and say interrupt, all the child processes are dying. Here I am not interested in debugging the child processes. But I don't want my child processes to be killed as my parent... (2 Replies)
Discussion started by: klnarayana
2 Replies

5. Shell Programming and Scripting

Replacing dot for comma

I wanted to change 34.66 to 34,66. I tried the command: sed 's/./,/' $NUM Where $NUM is a variable with 34.66 value. The output is ,4.66 (2 Replies)
Discussion started by: bdalmeida
2 Replies

6. Shell Programming and Scripting

o/p of awk to variable

Hi All, I have the below file: sample.cfg ---------- SYS_TEST TEST1 TEST2 and I have set the blow: NUM=1 I am running the command: awk -v numb=`expr $NUM + 1` '/SYS_TEST/ {print \$numb}' sample.cfg The output is TEST2 as expected. BUt I am unable to assign this output to a... (4 Replies)
Discussion started by: deepakgang
4 Replies

7. UNIX Benchmarks

FreeBSD `buildkernel' and `buildworld' Benchmarks

Just for fun, I thought I'd post my output from `time make -j4 buildworld' and `time make -j4 buildkernel' and see if anyone else had any good times. The machine is an Intel Core2Duo 2.2GHz with 2048MB DDR3. -------------------------------------------------------------- >>> Kernel build... (1 Reply)
Discussion started by: glen.barber
1 Replies

8. High Performance Computing

Memory Barriers for (Ubuntu) Linux (i686)

Hi all, (Hope this is the right forum for this question) I have some multi-threaded C code (compiled with GCC 4.4.3) which accesses shared variables. Although I've marked those variables with volatile to guard against compiler re-ordering, I'm concerned that processor out-of-order execution... (19 Replies)
Discussion started by: gorga
19 Replies

9. AIX

Unable to run a simple threaded program on AIX

Hi, I am unable to run a simple C++ threaded program on the AIX 5.3 platform. It says exec(): 0509-036 Cannot load program ./sendClient because of the following errors: rtld: 0712-001 Symbol __pthread was referenced from module sendClient(), but a runtime definition of the... (6 Replies)
Discussion started by: asutoshch
6 Replies

10. Shell Programming and Scripting

:integer expression expected

Hi, echo $i until || do read NUM if && ; then printf "$FBOLD\nInvalid number, please enter valid backup number: $FREG" fi done Getting below error : ./import_location.sh: line 234: [: : integer expression expected ./import_location.sh: line 234: [: :... (5 Replies)
Discussion started by: milink
5 Replies

11. Shell Programming and Scripting

Passing variables problem - Bash

I have a following problem: #!/bin/bash NUM=`cat accounts | wc -l`; for i in {1..$NUM} do account=`awk "NR==$i" accounts`; echo -e "\nAccount: $account\n"; sudo ./backup_maildir $account; done "accounts" is a file with regular e-mail addresses, one in each line.... (2 Replies)
Discussion started by: bobanpetrovic
2 Replies

12. Programming

How to decrease a string number by one in C?

If i have a macro called NUM which is "8" (string) for example How do I make it into say "7", well i just want to lower it by one, also there will never be the case where its "0" and i have to decrease it. there is no guarantee how many digits NUM could have, but will always be an integer. How... (6 Replies)
Discussion started by: omega666
6 Replies

13. Shell Programming and Scripting

Please help on AWK

Please help me. 1)I have a file "test.txt" with below content 1546 2346 8765 2380 2)I have a variable called "NUM". number variable is assigned with 5674 NUM=5674 3) How to subtract the first record with NUM variable? I tried below but its below awk command but its showing 0 as... (3 Replies)
Discussion started by: prince1987
3 Replies

14. Shell Programming and Scripting

sed command

Hi, I have a variable say NUM="9.126.145.110" I need to get the output as 9,126,145,110 I tried with sed command as sed s/\./,/ $NUM But it didnt work Please help..:confused: (6 Replies)
Discussion started by: Priya Amaresh
6 Replies

15. AIX

How to measure waiting time in run queue?

Hello guys, I am doing a performance analysis on one of our psystem. Most of time I am using Nmon analyser to do my trend graph. But I can't find any help with it. We are interesting in the time spend by tasks in Aix run queue. After looking the Aix documentation, I am pessimist to find any... (3 Replies)
Discussion started by: GiiGii
3 Replies