Tagged Questions
-2
votes
1answer
71 views
how to move the process in foreground [duplicate]
I write similarity of the command bash interpreter.
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include ...
2
votes
5answers
143 views
Kill all pid files in a folder
I have a folder that is filled with .pid files. Each has the PID for a resque worker. How can I kill every PID in that folder from the command line?
1
vote
2answers
65 views
Writing the output of a process to a file which has the process id in its file name
This is what I'm trying to achieve:
Run a command/process in background and have it's output redirected to a temporary file which is named after the process id of the background process.
Example:
...
0
votes
2answers
63 views
wanted to know pid for outcome of script
./abcd.sh #this script is responsible to run a java code for creating a zip file in /tmp/abcd/
Some times abcd.sh script takes 30 seconds to create a zip file and some times it takes 60 seconds to ...
2
votes
1answer
228 views
Redirect to a file output of remote python app started through ssh
[EDITED]
I have a python app in a remote server that i need to debug, when I run the app locally it prints some debug information (including python tracebacks) that i need to monitor.
Thanks to ...
7
votes
2answers
581 views
Bash: start remote python application through ssh and get its PID
I'm creating a little bash script to copy new files from a windows machine to a remote linux centos server (i run this script using the git-shell) then i want to restart the python application thats ...
-1
votes
1answer
291 views
How to display list of processes sorted in reverse order for a bash, tsch, ksh shell in Unix
Was wondering if someone could help me with this... I want to display a list of running processes sorted in reverse order. The reverse order is to be based on process identification value - PID.
I ...
2
votes
1answer
1k views
Get the PID of a process started with nohup via ssh
I want to start a process using nohup on a remote machine via ssh. The problem is how to get the PID of the process started with nohup, so the "process actually doing something", not some outer shell ...
0
votes
1answer
117 views
Obtaining PID of Last Command Run on Other Machine
I am using the following code to launch a command on another machine:
#!/bin/bash
/usr/bin/rsh -n $Host_Name "cat asdf.txt &"
And I am trying to obtain the PID of the cat command by using the ...
5
votes
1answer
170 views
How do I ensure that a process running is the process I expect is running?
Context:
I have a linux[1] system that manages a series of third party daemon's with which interactions are limited to shell[2] init scripts, i.e. only {start|restart|stop|status} are available.
...
0
votes
2answers
600 views
writing PID of a command in a variable
I have this command launched in a bash script:
rsync -av $sourcedir/ $destdir/
how do I store the PID for that specific command in a variable in the same script?
i tried with:
rsync -av --stats ...
3
votes
2answers
1k views
Bash Script, Kill proccess by pulling from PID file
This is what I have right now in the bash script:
ps aux | grep glassfish | grep domain1 | gawk '{print $2}' | xargs kill -9
The problem with this is that if someone else is logged in and pulling ...
0
votes
4answers
2k views
How to get the PID of a process by giving the process name in Mac OS X ?
I am writing a script to monitor the CPU and MEM of any given process. For that i need to send in the name of the process to be monitored as a commandline argument. For example.
./monitorscript ...
5
votes
3answers
1k views
Bash: number of child processes
How do find the number of child processes of a bash script, from within the script itself?
0
votes
1answer
165 views
Bash: Using process IDs in a shell script
I am a bit confused on the uses of PIDs and parent/children processes. I have been reading up on them and I understand as far as the fact that when a program starts it makes an exact copy of itself ...
0
votes
4answers
243 views
Explain some tips of bash
I get a piece of code for PID file control.
The style of programmers, I don't understand..
I don't know -->
Use of && on
[[ $mypid -ne $procpid ]] **&&**
And relaunch ourselves ...
0
votes
1answer
283 views
Removing quotes from a variable based argument [closed]
When a try to run kill -9 $pid in a bash script I get the error:
+ kill -9 '"1316"'
script.sh: line 341: kill: "1316": arguments must be process or job IDs
How do I stop the quotes from appearing? ...
1
vote
1answer
178 views
mapping pid to qdbus service numbers after launching
I am trying to write a bash script which will launch a program (konsole) and send dbus messages to it. Here is my experiment
konsole &
echo pid is $!
ps aux | grep konsole
qdbus | grep konsole
...
0
votes
2answers
66 views
Withing script X getting the PID of the process which feeds the stdin
I want to execute Program_A, and have it output examined by Program_B. e.g.
$ Program_A | Program_B
Within Program_B, I would like to be able to terminate Program_A if a certain condition matched.
...
1
vote
2answers
359 views
Output PID to file from process executed in bash script?
I've got this simple bash script that starts a server process. I want to output the pid of the server process to a file, pid.txt. After some quick searching on SO, I came up with this approach, but it ...
0
votes
2answers
376 views
bash lsof : get pid from one tty to another one
How to get the pid in tty1 of the process launched in tty2 ?
Context :
Trying to write a bash one-liner to kill a process generating a file when this file exceeds a pre defined max size. (The ...
9
votes
1answer
1k views
How to get variable from text file into Bash variable
Simple question, in BASH I'm trying to read in a .pid file to kill a process. How do I read that file into a variable. All the examples I have found are trying to read in many lines. I only want to ...
0
votes
2answers
286 views
bash script does not appear in ps aux output : how to kill?
I have done some googling on this but not come up with an answer ... frustration is setting in!
I want to kill my bash script. This executes various other processes. I can kill any process for which ...
0
votes
1answer
607 views
Waitpid Usage and Bash Scripting
I'm trying to write a program in which a program continuously takes in a user input through a while loop, and in each loop forks a new child of the current program process while running a shell ...
2
votes
3answers
415 views
Wait for all processes with a certain name to finish (in bash)
I would like to wait in linux (Ubuntu 11.10) for a load of processes to finish. Each of these processes has a different pid but the same name. Is it possible to do this?
EDIT:
Perhaps I should ...
4
votes
3answers
1k views
Getting a PID from a Background Process Run as Another User
Getting a background process ID is easy to do from the prompt by going:
$ my_daemon &
$ echo $!
But what if I want to run it as a different user like:
su - joe -c "/path/to/my_daemon &;"
...
3
votes
4answers
510 views
Set trap in bash for different process with pid known
I need to set a trap for a bash process i am starting in the background. The background process may run very long and has his pid saved in a specific file.
Now i need to set a trap for that process, ...
0
votes
1answer
594 views
BASH SCRIPT, environment variables and PID
I need a little help with bash sctipt. I need BASH script, using environment variables:
First script will create an array of variables, which are stored in the script and the PID and -f. Assigned to ...
1
vote
2answers
604 views
PID of compound shell command
In your shell (bash in my case), you can get the pid of the last backgrounded process with the $! variable:
command &
echo $!
However, I'm interested in a compound command:
commandA | commandB ...
4
votes
1answer
10k views
Inside a bash script, how to get PID from a program executed when using the eval command?
I have commands in a bash script that are similar to this:
eval "( java -classpath ./ $classname ${arguments[@]} $redirection_options $file )" &
pid=$!
However if I do a ps $pid it shows the ...
3
votes
2answers
744 views
Redirecting standard output to a file containing the pid of the logging process
I've searched for a while but i can't either find an answer or come up with a solution of my own, so I turn to you guys. First question I actually ask here :)
I would like to run several instances of ...
1
vote
3answers
1k views
Linux / Bash using PS -f for specific PID returns in different format than PS -f, also queston about using Grep to parse this
I have a need, for a python script I'm creating, to first get just the PID of a process (based on its name) and then to get from that process, usings its PID, its time duration, which, from the ...
1
vote
2answers
2k views
How to find PID of an dash-exec command
NOTE: I thought I was using bash, but /bin/sh is linked to /bin/dash, which has this weird exec problem.
I have a simple bash shell script on Linux which is used to launch a server process (which I ...
2
votes
3answers
2k views
Bash script to kill and restart Hudson
I am a novice at Bash scripting but I'm a quick learner. Usually. I'm trying to write a script to kill and restart an instance of Hudson--it needs to be restarted to pick up changes in environment ...
24
votes
5answers
22k views
Bash: how to check if a process id (PID) exists
In a bash script i want to do the following (in pseudo-code):
if [ a process exists with $PID ]; then
kill $PID
fi
What's the appropriate bash for the conditional statement?
Thanks
4
votes
3answers
2k views
How to auto-restart a python script on fail?
This post describes how to keep a child process alive in a BASH script:
http://stackoverflow.com/questions/696839/how-do-i-write-a-bash-script-to-restart-a-process-if-it-dies
This worked great for ...
13
votes
5answers
10k views
How do a script know its own PID?
I have a script in bash called Script.sh, and i need to know his own PID ( i need to get PID inside the Script.sh )
Any clues to realize this ?
Regards,
Debugger
18
votes
8answers
32k views
PID of last started process in Bash-Script
i am using the program synergy together with an ssh tunnel
it works, i just have to open an console an type these two commands:
ssh -f -N -L localhost:12345:otherHost:12345 otherUser@OtherHost
...
11
votes
6answers
6k views
The best way to ensure only 1 copy of bash script is running?
What is the simplest/best way to ensure only 1 copy of given script is running - assuming it's bash on linux?
At the moment I'm doing:
ps -C script.name.sh > /dev/null 2>&1 || ...
11
votes
11answers
6k views
How to get the PID of a process that is piped to another process in Bash?
I am trying to implement a simple log server in Bash. It should take a file as a parameter and serve it on a port with netcat.
( tail -f $1 & ) | nc -l -p 9977
But the problem is that when the ...
1
vote
5answers
421 views
Looking to get the env vars of a PID in BASH for a BASH script
Any way to do this?
I have a script that exports a few vars and runs a component.
I'm looking to find out the actual values of some of these vars while the process is running. (Which applies here, ...
2
votes
6answers
5k views
How to do a search for PID? (bash)
assuming that I know the PID of a process and want to do a search in ps -A, how do I do it? I tried doing this:
echo "Enter PID to search: "
read PID
search=$(ps -A | grep -v PID | awk '{print $1}')
...
6
votes
9answers
2k views
Bash Shell Scripting: what simple logic am I missing
This may be too generic a question as is but...
I am stumped by trying to move through the directories from within a shell script. I'm not a *nix power user, but I am comfortable working through the ...
