Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sh.exe": syntax error near unexpected token `('

All that I'm trying to do is cd into Program Files (x86) and I get this:

Already in the C directory:

$ cd Program Files (x86)

sh.exe": syntax error near unexpected token `('
like image 753
user3303314 Avatar asked May 11 '14 22:05

user3303314


1 Answers

you need to quote the directory name or escape special characters

try

cd "Program Files (x86)"

or

cd Program\ Files\ \(x86\)
like image 63
CupawnTae Avatar answered Oct 03 '22 22:10

CupawnTae