I am having issues handling arguments that contain white spaces in a my bash script.
The script
#!/bin/bash for i in $* do echo
Change $* to "$@" on the first line.
$*
"$@"