Bash Variables

Date August 17, 2006 by Isaac

Character
Definition
$*
Expands to the positional parameters, starting from one. When the expansion occurs within double quotes, it expands to a single word with the value of each parameter separated by the first character of the IFS special variable.

$@
Expands to the positional parameters, starting from one. When the expansion occurs within double quotes, each parameter [...]