Answers for "how to cd into a directory with a space linux"

0

how to cd into a directory with a space linux

Either you put quotes around the directory name 
( cd "/Users/niho/Desktop/Reader 0.5" ) 
or you escape the directory name 
( /Users/niho/Desktop/Reader\ 0.5 ). 
As others have mentioned, quoting the path or backslash-escaping the 
spaces will work.
Posted by: Guest on May-14-2021

Code answers related to "how to cd into a directory with a space linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language