Shell

What is difference between $@ and $*?

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

$@ is an array of all the arguments passed to the script $* is a single string of all the arguments passed to the script