Monday, 22 October 2012

What is the difference between $* and $@? | Shell Scripting Interview Questions

$@ treats each quoted arguments as separate arguments but $* will consider the entire set of positional parameters as a single string.

No comments: