Can anybody tell me what does $* mean in bash scripting?
$*
I tried to search on google for it, but I found only about $0, $1 an
$0
$1
It's all the arguments passed to the script, except split by word. You almost always want to use "$@" instead. And it's all in the bash(1) man page.
"$@"
bash(1)
You can use symbolhound search engine to find codes that google will not look for.
For your query click here