User Tools

Site Tools


bash:built-in_variables

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
bash:built-in_variables [2019/11/29 00:37] – removed peterbash:built-in_variables [2021/01/26 11:42] (current) peter
Line 1: Line 1:
 +====== BASH - Built-in variables ======
 +
 +When doing scripting in the shell there are a few built-in variables that we can used:
 +
 +<code>
 +$$ = The PID number of the process executing the shell.
 +$? = Exit status variable.  Nearly all Linux programs return a 0 error status for true and anything else is false.
 +$0 = The name of the command you used to call a program.
 +$1 = The first argument on the command line.
 +$2 = The second argument on the command line.
 +$n = The nth argument on the command line. n = 0-9
 +$* = All the arguments on the command line.
 +$# = The number of command line arguments.
 +</code>
  
bash/built-in_variables.1574987855.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki