What is difference between $@ and $*?
Answer
$@ is an array of all the arguments passed to the script
$* is a single string of all the arguments passed to the script
$@ is an array of all the arguments passed to the script
$* is a single string of all the arguments passed to the script