How to create a folder with a folder name containing spaces in Linux?

advertisements

How to create a folder witha a folder name containing spaces in linux?

For Example, folder name should be "Stack OverFlow".


you can also do mkdir Stack\ OverFlow the \ does the same thing as " " but it is easier. so you can do stuff like mkdir Stack\ OverFlow\ is\ Great. you can manipulate that folder using the \ as well. so things like cd Stack\ OverFlow and rm -rf Stack\ OverFlow.