The job-control tag has no wiki summary.
0
votes
1answer
332 views
How to tell bash not to issue warnings “cannot set terminal process group” and “no job control in this shell” when it can't assert job control?
To create a new interactive bash shell I call bash -i. Due to issues with my environment, bash cannot assert job control (I'm using cygwin bash in GNU emacs) and issues warnings ("cannot set terminal ...
1
vote
2answers
157 views
How can I implement shell job control basics in Python?
There is basic job control like suspend, resume, interrupt, and background implemented by most modern shells.
How can I make a shell sensitive to ^Z, fg, ^C, and bg (as they appear in bash), in ...
2
votes
0answers
868 views
(Hadoop) MapReduce - Chain jobs - JobControl doesn't stop
I need to chain two MapReduce jobs. I used JobControl to set job2 as dependent of job1.
It works, output files are created!! But it doesn't stop!
In the shell it remains in this state:
12/09/11 ...
3
votes
2answers
994 views
Job Control in Linux - Want to give control back to terminal
I need some help regarding job control in linux.
I run my program out of a terminal, like this
$ ./test.elf &
My program/process is then being run as the background process.
After a while ...
1
vote
0answers
122 views
Looking for a Simple Job Control Framework (Not looking for schedulers like Quartz) [closed]
I am looking for a simple Job Control Framework to:
Check up on the status of processes running on different machines
The machines would be running a LINUX distribution
The processes would be ...
1
vote
2answers
197 views
Bash job control - Can you terminate second command on list without terminating first?
If I issue this at a bash prompt: $ cmd_1 ; cmd_2
cmd_1 is in the foreground. Can I prevent cmd_2 from running without halting cmd_1? I have until cmd_1 finishes, at which time cmd_2 will start, ...
0
votes
1answer
258 views
How to switch terminal to new child process of process launched with NSTask?
I made a pseudo terminal with method described here: http://lists.apple.com/archives/student-dev/2005/Mar/msg00019.html
The terminal itself worked well. Anyway the problem is terminal cannot being ...
8
votes
2answers
212 views
Does Linux allow process group ids to be reassigned to processes?
Suppose pid X is a process group leader and X terminates, but other processes in the process group remain running (with X as their pgid). Will Linux prevent the value X from being assigned as a pid to ...
3
votes
4answers
605 views
Job control in linux with C
What I know:
When a process is running I can press "CTRL + Z" and suspend it. The with bg and fg commands I can either run it in "background" or "foreground" mode.
What I'm aksing:
Is there a way ...
1
vote
2answers
718 views
Difference between foreground job and background job [closed]
In Linux, what is the difference between a foreground job and a background job?
1
vote
1answer
106 views
Programmatically start a series of processes w\ job control
I have a series of 7 processes required to run a complex web app that I develop on. I typically start these processes manually like this:
job &>/tmp/term.tail &
term.tail is a fifo pipe ...
1
vote
1answer
2k views
How to start a linux shell as from /etc/inittab
We used to have two entries in our /etc/inittab:
::sysinit:/etc/init.d/rcS
ttyS0::respawn:-/bin/sh
rcS is a shell script which normally starts our application, but in a special case we called ...
0
votes
5answers
267 views
Does PHP have job control like bash does?
does PHP support something like ampersand in bash (forking)? Let's say I wanted to use cURL on 2 web pages concurrently, so script doesn't have to wait before first cURL command finnishes, how could ...
25
votes
7answers
16k views
linux: kill background task
How do I kill the last spawned background task in linux?
Example:
doSomething
doAnotherThing
doB &
doC
doD
#kill doB
????
9
votes
1answer
3k views
Wait for bash background jobs in script to be finished
To maximize CPU usage (I run things on a Debian Lenny in EC2) I have a simple script to launch jobs in parallel:
#!/bin/bash
for i in apache-200901*.log; do echo "Processing $i ..."; ...
3
votes
3answers
2k views
Run lynx -dump in background?
I have a bash script mystuff containing a line like
lynx -dump http://example.com >tmpfile
and the script works fine, including this part, except when I run it non-interactively:
$ ./mystuff ...
1
vote
2answers
190 views
Unable to put “X” to right prompt to indicate number of jobs in Zsh
This article's code does not work for me. I have pasted all its code to my .zshrc.
I have the following in my .zshrc
RPROMPT='%{\[0;33m%}%1v%{\[0m%}'
It should indicate whether you have jobs or ...
23
votes
5answers
3k views
In what order should I send signals to gracefully shutdown processes?
In a comment on this answer of another question, the commenter says:
don’t use kill -9 unless absolutely
necessary! SIGKILL can’t be trapped so
the killed program can’t run any
shutdown ...
9
votes
6answers
7k views
Why can't I use job control in a bash script?
In this answer to another question, I was told that
in scripts you don't have job control
(and trying to turn it on is stupid)
This is the first time I've heard this, and I've pored over the ...