Sponsored Content
Top Forums Shell Programming and Scripting Find process through file opened Post 302426198 by albertogarcia on Tuesday 1st of June 2010 05:58:26 AM
Old 06-01-2010
Find process through file opened

Hello all,

I have a file that is growing and growing by the action of any process.
How can I find what process is?

Thank you
 

10 More Discussions You Might Find Interesting

1. HP-UX

How to get the opened files by a process

Hi, i'd like to get the files which are opened by a process during his execution using the c language. Thanks for helping me. (2 Replies)
Discussion started by: benoit.gaillard
2 Replies

2. AIX

find file with process ID

hello I have a process ID and i want to known what files are use with this process. fuser give to me the process with a file...i search a similar command but the reverse: to know the files with a process thank you (1 Reply)
Discussion started by: pascalbout
1 Replies

3. UNIX for Dummies Questions & Answers

Command to find last time file was opened

New to unix .. Is there a simple command or utility that will tell me when the last time a file was opened/used? (3 Replies)
Discussion started by: sbr262
3 Replies

4. Shell Programming and Scripting

How to recognize if a file still opened by any process?

Is there a way to tell for sure if a file currently is opened by any running process? I have a task to filter a text file which is produced by some long process. I have no way to communicate with that process, but I have access to a location, where that proces produce an output file. Need... (3 Replies)
Discussion started by: alex_5161
3 Replies

5. Red Hat

How to find out the Process ID for particular one file

Hi, How to find out the Process ID for particular one file. Tell the all mostly used PS options in the real time I could you appreciate if anyone answered Thanks Bhuvan (4 Replies)
Discussion started by: Bhuvan
4 Replies

6. UNIX for Advanced & Expert Users

same file being opened by two users at a time

I want to avoid a situation where because two users simultaneously open a file and modify and save, leaving the original file in mess. Is there a way in UNIX to warn a user if that particular file is already being used by another user. Thanks in advance (3 Replies)
Discussion started by: paresh n doshi
3 Replies

7. Shell Programming and Scripting

How to find who opened/modified a file last

Hi *, I'm wondering if it possible to know WHO opened or modified a file last? I know it's possible with some options of find and also ls to get when the file was modified last. I'm currently supervising a file and have to log all users name who opened or modified it. Thanx a lot for any... (3 Replies)
Discussion started by: Jabarod
3 Replies

8. Shell Programming and Scripting

Help with cp command when destination file is opened

I am writing a shell script (runs on HP Unix) which copies files from a source directory to another destination daily. The destination directory always have the files with same name as in the source directory. And daily a new file will be created in the source. cp command works fine if the file... (1 Reply)
Discussion started by: arunkumar_ms
1 Replies

9. Shell Programming and Scripting

File exists, but cannot be opened.How to check- whether it could be opened to read when it exists

Hi #Testing for file existence if ; then echo 'SCHOOL data is available for processing' else echo 'SCHOOL DATA IS NOT AVAILABLE FOR PROCESSING' : i wrote a script, where it begins by checking if file exists or not. If it exists, it truncates the database... (2 Replies)
Discussion started by: rxg
2 Replies

10. UNIX for Advanced & Expert Users

Dup2 - for file descriptor opened by a different process

is it possible to duplicate file descriptors(opened by a different process) with the help of dup or dup2. the two process do not share parent child relationship as well. (2 Replies)
Discussion started by: replytoshishir
2 Replies
Statistics::Basic::_TwoVectorBase(3pm)			User Contributed Perl Documentation		    Statistics::Basic::_TwoVectorBase(3pm)

NAME
Statistics::Basic::_TwoVectorBase - base class objects like Correlation METHODS
query() Query the value of the object. It will return the undefined value until there's something to calculate. insert() Insert two new new values into the vectors. This function must be given precisely two arguments and probably shouldn't be undefined values in most cases. # insert a 4 in one vector and a 3 in the other $object_instance->insert( 4, 3 ); append() ginsert() The growing insert inserts new elements, growing the max size of the vector to accommodate the new elements (if necessary). This function must be given precisely two arguments and probably shouldn't be undefined values in most cases. # append a 4 in one vector and a 3 in the other $object_instance->ginsert( 4, 3 ); query_size() The current size of the vectors -- regardless of their max size (as set by "set_size()"). This function returns a list, i.e.: my @s = $obj->query_size; # two values my $s = $obj->query_size; # the right hand value of the list set_size() Set the maximum size for the underlying Statistics::Basic::Vector objects. This function requires two arguments. set_vector() Set the vector objects used to calculate the object's value. This function takes two arguments -- which can either be arrayrefs or Statistics::Basic::Vector objects. They must have the same number of elements. my $v1 = vector my $v2 = $v1->copy; $example_correlation->set_vector($v1, $v2); OVERLOADS
This class provides overloads. If evaluated as a string, it will attempt to print a pretty value for the object (or "n/a", see "query()" above). the resulting string can be tuned, in terms of precision, see ipres for further information. If evaluated as a number, it will try to return the raw result of "query()", possibly turning the resulting "undef" (if applicable) into a 0 in the process -- note that Perl does this 0-izing, not the overload. The "eq" and "==" operators are also overloaded, trying to do the right thing. Also see toler for further information. AUTHOR
Paul Miller "<jettero@cpan.org>" COPYRIGHT
Copyright 2012 Paul Miller -- Licensed under the LGPL SEE ALSO
perl(1), Statistics::Basic, Statistics::Basic::Vector perl v5.14.2 2012-01-23 Statistics::Basic::_TwoVectorBase(3pm)
All times are GMT -4. The time now is 05:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy