I need to create/access a directory contain spaces. I know that I can create in this way mkdir -p ' asd qwe'.
But I need to put that value to a variable and access it. Following will script create 2 directory as expected.
FOL="asd qwe"
mkdir -p "$FOL"
But how can I assign that value to a single variable and do it?
Following will script create 2 directory as expected-- No the command creates a single directory namedasd qwe