$# Stores the number of command-line arguments that were passed to the shell program
$? Stores the exit value of the last command that was executed.
$@ treats each quoted arguments as separate arguments .
$* will consider the entire set of positional parameters as a single string.
$? Stores the exit value of the last command that was executed.
$@ treats each quoted arguments as separate arguments .
$* will consider the entire set of positional parameters as a single string.
No comments:
Post a Comment