Skip to main content
added 25 characters in body
Source Link
Mat
  • 54.9k
  • 11
  • 164
  • 143

$$? determines the exit status of the executed command. the $$ followed by numbers (e.g. $1, $2, etc.) represents the parameters in the shell script.

$ determines the exit status of the executed command. the $ followed by numbers represents the parameters in the shell script.

$? determines the exit status of the executed command. $ followed by numbers (e.g. $1, $2, etc.) represents the parameters in the shell script.

Source Link

$ determines the exit status of the executed command. the $ followed by numbers represents the parameters in the shell script.