So I'm learning today that Bash is all sorts of weird.
I'm trying to set up a variable that goes to a folder on my Mac (Bash 3.2)
FOLDER=".../Application Support/..."
But...
Bash will choke and say something like:
.../Application: No such file or directory
It will still choke if I use {}
{.../Application: No such file or directory
How can I get access to this folder via Bash?!