17 lines
483 B
Plaintext
17 lines
483 B
Plaintext
|
====== Paramètre && - retour du PID ======
|
|||
|
{{tag>"Linux commande"}}
|
|||
|
{{ :informatique:langage:logo_bash.png?nolink&75x75|}}
|
|||
|
|
|||
|
Affiche le numéro de process de l’exécution de la ligne de commande en cours. Synonyme de PID, Process IDentification en cours.
|
|||
|
|
|||
|
Dans un programme BASH, on peut récupérer le numéro du process de l'enfant avec la variable [[informatique:bash:liste-variables-bash|$BASHPID]]
|
|||
|
|
|||
|
<code>
|
|||
|
~ $ echo $$
|
|||
|
17601
|
|||
|
~ $ ( echo $$; echo $BASHPID )
|
|||
|
17601
|
|||
|
17634
|
|||
|
</code>
|
|||
|
|