0

This might seem like an dumb mistake, but I'm trying to access my files in a folder (Final Project), but the name of the folder has a space in between it so im curious on how to do so. I've tried commands such as:

cd ./Final Project
cd ../Final Project
cd ~/Final Project
cd ~/Final/Project 

Screenshot of terminal

Brian
  • 11
  • 3

1 Answers1

0

Just type:

cd Final\ Project/

You could also quote it like so:

cd "Final Project"

You can actually use TAB to your advantage. Type:

cd Fin<TAB> 

and your terminal might auto-fill the name.

zedfoxus
  • 35,121
  • 5
  • 64
  • 63
  • 1
    Thank you it seems like all of those methods worked out perfectly! – Brian Jun 09 '20 at 13:54
  • Awesome. Feel free to put closure to your question by marking this or any other answer that may come after this as accepted. There is usually a tick mark by the answer to mark it accepted. It's optional. – zedfoxus Jun 09 '20 at 13:55