What is the difference between $* and $@?
1
$@ treats each quoted argument as separate arguments but $* considers the entire set of positional parameters as a single string.
2
$@ considers the entire set of positional parameters as a single string but $* treats each quoted arguments as separate arguments
3
both $* and $@ consider the entire set of positional parameters as a single string.
4
both $* and $@ treat each quoted argument as separate arguments.
5
None of above