Skip to content

Instantly share code, notes, and snippets.

@blackzphoenix
Last active March 27, 2019 23:46
Show Gist options
  • Save blackzphoenix/598dddc669eef70b1d2df031656b4c38 to your computer and use it in GitHub Desktop.
Save blackzphoenix/598dddc669eef70b1d2df031656b4c38 to your computer and use it in GitHub Desktop.
parameter cal
$* : holds all command line parameters or arguments.
$# : holds the number of positional parameters.
$- : holds flags supplied to the shell.
$? : holds the return value set by the previously executed command.
$$ : holds the process number of the shell (current shell).
$! : hold the process number of the last background command.
$@ : holds all command line parameters or arguments.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment