How can I keep quotes in Bash arguments? [duplicate]
using “$@” will substitute the arguments as a list, without re-splitting them on whitespace (they were split once when the shell script was invoked), which is generally exactly what you want if you just want to re-pass the arguments to another program. Note that this is a special form and is only recognized as such … Read more