Tagged Questions
5
votes
5answers
6k views
Files being used by a unix process
The fuser command lets me know which processes are using a file or directory.
I'm looking for command that does the opposite: lets me know which files are being used by a process.
Update
Forgot ...
0
votes
4answers
165 views
How to get rid of extra characters in linux process ID using shell script
I m trying to kill a process by its pid, and this is the script that I found from web.
PID=`ps -ef | grep myProcess | grep -v grep | awk '{print $2}'`
echo -e Killing myProcess with pid: $PID..
...