Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

5 Answers

up vote 14 down vote accepted

The variable '$$' contains the PID.

share|improve this answer

use $BASHPID or $$

See the manual for more information, including differences between the two.

share|improve this answer
3  
Do note that $$ and BASHPID are not always the same thing - the manual mentions this, and there's a more concrete example here: tldp.org/LDP/abs/html/internalvariables.html . The distinction can be pretty important, as a lot of bash constructs do run in subshells. – Jefromi Mar 22 '10 at 16:00
@Jefromi -- noted. That was one of the reasons I linked to the manual. – tvanfosson Mar 22 '10 at 16:14

In addition to the example given in the Advanced Bash Scripting Guide referenced by Jefromi, these examples show how pipes create subshells:

$ echo $$ $BASHPID | cat -
11656 31528
$ echo $$ $BASHPID
11656 11656
$ echo $$ | while read line; do echo $line $$ $BASHPID; done
11656 11656 31497
$ while read line; do echo $line $$ $BASHPID; done <<< $$
11656 11656 11656
share|improve this answer

You can use the $$ variable.

share|improve this answer

The PID is stored in $$.

Example: kill -9 $$ will kill the shell instance it is called from.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.