Sponsored Content
Top Forums Shell Programming and Scripting Print only processes running for more than 24 hours Post 302851021 by alister on Friday 6th of September 2013 09:32:15 AM
Old 09-06-2013
I would drop "cmd" from the format since it adds nothing not already provided by "args", leaving "etime" as the last field, which makes it easier to extract.

Regards,
Alister
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How do you print the number of processes that each user is currently running in Unix?

Ok, so I know there's a way to do this, but I've been trying to find out all afternoon with no luck. I think it should print out something like this: 1 bin 2 daemon 6 duo Where the numbers on the left are the number of processes being run by the user whose name is listed on the right. Is... (4 Replies)
Discussion started by: Duo11
4 Replies

2. UNIX for Dummies Questions & Answers

Capture running process for 2 hours with an interval of 10 sec

Hi, Can any one help me on this. How to capture the running process for two hours with an interval of 10 sec. Thanks in andvance Double post, continued here, thread closed (0 Replies)
Discussion started by: sarathkumar
0 Replies

3. Shell Programming and Scripting

Capture running process or 2 hours with an interval of 10 sec

Hi, Can any one help me on this. How to capture the running process for two hours with an interval of 10 sec. Thanks in andvance (1 Reply)
Discussion started by: sarathkumar
1 Replies

4. Shell Programming and Scripting

Capture the running process for 2 hours

Hi, How can i capture the running process for 2 hours. Thanks in advance.:b: (1 Reply)
Discussion started by: sarathkumar
1 Replies

5. Shell Programming and Scripting

List of Running Jobs In Last 4 Hours

Hi Experts, Please help me in this. I am trying this code on AIX 5.3. I need list of jobs that executed in last 4 hours. I have a schedule on this script - cron executes it and sends mail to me for every 2 hours. I have a Job time and have around 100 jobs those execute daily. What all i need... (2 Replies)
Discussion started by: rajubollas
2 Replies

6. UNIX for Dummies Questions & Answers

find the no of processes that ran 2 hours before or earlier

Is there a way to find out the total no of processes that were running ? - 2 or 3 hours before - list those no of processes (3 Replies)
Discussion started by: jansat
3 Replies

7. UNIX for Dummies Questions & Answers

At command not running out of hours

Hi All, new to the forum and new to Unix but I have an issue which is annoying on a new level. I have included a short and full version for anyone needing more information. Short Version I am running a set of scripts that work and run fine. one of the scripts arranges the first... (4 Replies)
Discussion started by: Delboy4000
4 Replies

8. Shell Programming and Scripting

Can anyone help me to print UNIX epoch time to days,hours,min,sec ?

I have unix epoch time 1441678454803, Can you please help me to print this time in below format ? DAY,HOUR,MIN,SEC Appreciate your help!!! Thanks, Prince (7 Replies)
Discussion started by: prince1987
7 Replies

9. UNIX for Beginners Questions & Answers

How to display processes which have been running for more than a X hours?

Hi, Is it possible to display processes which have been running for more than a 5hrs using a variation of the ps -ef command? Regards, Manny (5 Replies)
Discussion started by: mantas44
5 Replies

10. UNIX for Beginners Questions & Answers

How to check the processes running longer than 2 hours.?

HI can someone help me to check the process running more than 2 hours. I have the below command which shows the time and process id, however, I only need the processes running more than 2 hours. (8 Replies)
Discussion started by: Vinod
8 Replies
DIO_FCNTL(3)								 1							      DIO_FCNTL(3)

dio_fcntl - Performs a c library fcntl on fd

SYNOPSIS
mixed dio_fcntl (resource $fd, int $cmd, [mixed $args]) DESCRIPTION
The dio_fcntl(3) function performs the operation specified by $cmd on the file descriptor $fd. Some commands require additional arguments $args to be supplied. PARAMETERS
o $fd - The file descriptor returned by dio_open(3). o $cmd - Can be one of the following operations: o F_SETLK - Lock is set or cleared. If the lock is held by someone else dio_fcntl(3) returns -1. o F_SETLKW - like F_SETLK, but in case the lock is held by someone else, dio_fcntl(3) waits until the lock is released. o F_GETLK - dio_fcntl(3) returns an associative array (as described above) if someone else prevents lock. If there is no obstruction key "type" will set to F_UNLCK. o F_DUPFD - finds the lowest numbered available file descriptor greater than or equal to $args and returns them. o F_SETFL - Sets the file descriptors flags to the value specified by $args, which can be O_APPEND, O_NONBLOCK or O_ASYNC. To use O_ASYNC you will need to use the PCNTL extension. o $args -$args is an associative array, when $cmd is F_SETLK or F_SETLLW, with the following keys: o start - offset where lock begins o length - size of locked area. zero means to end of file o whence - Where l_start is relative to: can be SEEK_SET, SEEK_END and SEEK_CUR o type - type of lock: can be F_RDLCK (read lock), F_WRLCK (write lock) or F_UNLCK (unlock) RETURN VALUES
Returns the result of the C call. EXAMPLES
Example #1 Setting and clearing a lock <?php $fd = dio_open('/dev/ttyS0', O_RDWR); if (dio_fcntl($fd, F_SETLK, Array("type"=>F_WRLCK)) == -1) { // the file descriptor appears locked echo "The lock can not be cleared. It is held by someone else."; } else { echo "Lock successfully set/cleared"; } dio_close($fd); ?> NOTES
Note This function is not implemented on Windows platforms. PHP Documentation Group DIO_FCNTL(3)
All times are GMT -4. The time now is 09:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy