Results 1 - 22 of about 22 results out of about 103358 pages. (0.06 seconds)

ProcessManagement . . . 1 match
This is still a work in progress. Expect some rough edges. <<TableOfContents>> <<Anchor(basics)>> = The basics = A '''process''' is a running instance of a program in memory. E

46.6k - rev: 88 (current) last modified: 2023-08-09 06:29:52

UsingFind . . . 2 matches
...arallel can be very useful, but the examples given here were totally wrong. The ProcessManagement page has some useful examples of `parallel` on it.) === Nasty OS X bug === OS X...

36.4k - rev: 191 (current) last modified: 2019-05-17 14:26:29

BashPitfalls . . . 2 matches
...rted name of an executed command is trivial). For ''real'' answers to this, see ProcessManagement. The following is the quick and dirty stuff. Searching for the PID of (for exa...

86.2k - rev: 572 (current) last modified: 2024-04-04 23:09:24

BashFAQ/042 . . . 2 matches
...obody other than the parent of a process should try to manage the process. Read ProcessManagement. This is one of those questions that usually masks a much deeper issue. It's r...

2.2k - rev: 10 (current) last modified: 2012-10-27 10:38:13

BashFAQ/033 . . . 2 matches
...the only sure way to do that is by using a lock. For details on doing this, see ProcessManagement or [[BashFAQ/045|FAQ 45]]. ProcessManagement also covers topics like "I want to...

4.1k - rev: 8 (current) last modified: 2009-12-30 18:39:04

BadUtils . . . 2 matches
...llow a process couldn't be anticipated. Never do it in scripts or programs! See: ProcessManagement. == killall == On some systems (Linux-based ones, usually) this may try to send...

5.2k - rev: 12 (current) last modified: 2022-01-11 14:21:47

WrapperScript . . . 1 match
... to have the same PID that we have. This is important if the process is being [[ProcessManagement|managed]] by something that wants to maintain a parent/child relationship with i...

5.1k - rev: 12 (current) last modified: 2021-12-02 12:26:10

SignalTrap . . . 1 match
...e program cannot clean up, and may leave files in a corrupted state. Please see ProcessManagement for a more thorough explanation of how processes work and interact. <<Anchor(ex...

11.7k - rev: 26 (current) last modified: 2023-09-21 20:57:38

Quotes . . . 1 match
...ers.''' {{{ echo '&' }}} Without quotes, the `&` would put the `echo` command [[ProcessManagement|into the background]]. With quotes, the `&` is simply made into a word, and pas...

10.9k - rev: 32 (current) last modified: 2024-03-07 22:57:49

FileDescriptor . . . 1 match
...ers to an open file. Each process has its own private set of FDs, but FDs are [[ProcessManagement#theory|inherited by child processes]] from the parent process. Every process sh...

8.9k - rev: 4 (current) last modified: 2018-07-26 21:42:10

Environment . . . 1 match
...The environment is an unordered set of variables in an area of memory for each [[ProcessManagement|process]]. When one process creates a new process (by calling `fork()`), the ch...

10.7k - rev: 17 (current) last modified: 2016-08-27 22:14:52

DotFiles . . . 1 match
...set-up commands, which create environment variables that can be passed down to [[ProcessManagement#theory|child processes]], are put in `.bash_profile`. The transient settings an...

14.2k - rev: 41 (current) last modified: 2021-10-23 00:22:04

CategoryUnix . . . 1 match
...##master-page:CategoryTemplate ##master-date:Unknown-Date #format wiki #language en These pages discuss Unix system administration as well as end-user concepts. Topics include op...

0.5k - rev: 3 (current) last modified: 2009-03-11 15:32:19

CategoryShell . . . 1 match
...##master-page:CategoryTemplate ##master-date:Unknown-Date #format wiki #language en These pages discuss issues associated with the Unix command line shells, especially bash, but a...

0.6k - rev: 2 (current) last modified: 2009-03-11 17:10:59

BashWeaknesses . . . 1 match
...y trees...) will have to be done with extremely primitive hacks. 1. '''Fancy [[ProcessManagement|process management]]'''. Bash has nothing analogous to `select(2)` or `poll(2)`...

9.4k - rev: 30 (current) last modified: 2022-09-01 18:14:07

BashGuide/Parameters . . . 1 match
...st recently completed foreground command. || ||'''$''' ||`$$` ||Expands to the [[ProcessManagement|PID]] (process ID number) of the current shell. || ||'''!''' ||`$!` ||Expands to...

19.0k - rev: 45 (current) last modified: 2017-04-07 00:32:44

BashGuide/JobControl . . . 1 match
...is equivalent to `fg %1`, while `%1 &` is equivalent to `bg %1`. == See Also == ProcessManagement discusses practices for working with multiple processes. There's also an exampl...

5.3k - rev: 15 (current) last modified: 2019-09-30 10:00:56

BashGuide/InputAndOutput . . . 1 match
...s from its parent process. (For a more advanced discussion of this topic, see [[ProcessManagement#theory|process management]].) One of those resources is a set of variables call...

41.7k - rev: 46 (current) last modified: 2023-03-02 12:14:34

BashFAQ/108 . . . 1 match
..."$pids $!" done waitall $pids }}} Looping through {{{kill -0}}} can be very inefficient. More useful information might be found at [[ProcessManagement|Process Management]] page....

1.5k - rev: 3 (current) last modified: 2011-09-12 23:03:28

BashFAQ/068 . . . 1 match
...that allows the program to shut itself down cleanly instead (i.e. SIGTERM). See ProcessManagement for more information on SIGKILL. Also be aware that some of these wrappers "exe...

3.6k - rev: 23 (current) last modified: 2019-07-25 13:38:08

BashFAQ/045 . . . 1 match
...iptor and not the lock file? How can we ensure we use something that is not already being used? For more discussion on these issues, see ProcessManagement. ---- CategoryShell...

5.9k - rev: 28 (current) last modified: 2024-01-28 01:21:49