abonnel-siteweb/data/pages/informatique/bash/symbole_double_et_commercia...

17 lines
483 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

====== Paramètre && - retour du PID ======
{{tag>"Linux commande"}}
{{ :informatique:langage:logo_bash.png?nolink&75x75|}}
Affiche le numéro de process de lexé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>