How to add path with space in Bash variable

mount /dev/sda9 "$games"

As mentioned, always quote variable dereferences. Otherwise, the shell confuses the spaces in the variable’s value as spaces separating multiple values.

Leave a Comment