Cygwin unexpected token `('on cd

I have a directory of Program Files and Program Files (x86) in C I can access Program Files using $ cd Program\ Files\ from Windows 8, but this command $ cd Program\ Files\ (x86) returns the following error:

 sadaf2605@Sadaf /cygdrive/c $ cd Program\ Files\ (x86) -bash: syntax error near unexpected token `(' 
+8
cygwin
source share
1 answer

You also need to avoid parentheses:

 $ cd Program\ Files\ \(x86\) 

Or just use quotation marks:

 $ cd "Program Files (x86)" 
+10
source share

All Articles