really dumb noob question

Questions about Wine on Linux
Locked
neganx
Newbie
Newbie
Posts: 4
Joined: Wed Jun 29, 2011 4:06 am

really dumb noob question

Post by neganx »

how do I navigate to the Program Files (x86) folder in wine?

Code: Select all

wreckingball@ubuntu:~/.wine/drive_c$ cd Program Files (x86)
bash: syntax error near unexpected token `('
wreckingball@ubuntu:~/.wine/drive_c$ 
thank you in advance
User avatar
dimesio
Moderator
Moderator
Posts: 13202
Joined: Tue Mar 25, 2008 10:30 pm

Re: really dumb noob question

Post by dimesio »

neganx wrote:how do I navigate to the Program Files (x86) folder in wine?

Code: Select all

wreckingball@ubuntu:~/.wine/drive_c$ cd Program Files (x86)
bash: syntax error near unexpected token `('
wreckingball@ubuntu:~/.wine/drive_c$ 
Put quotes around the path:

Code: Select all

cd "Program Files (x86)"
Locked