Just some stuff about me.
Here's my dotfiles repository.
What links here:
From The UNIX Programming Environment by Kernighan & Pike:
$@ and $* expand into arguments; blanks in arguments will result in multiple arguments (splitting)."$*" is a single word composed of all arguments, joined with spaces."@$" is identical to arguments; blanks ignored. Result is list of words identical to original arguments.