[Wine] Slitaz OS. Use Wine with Amazon KindlePC

perryh at pluto.rain.com perryh at pluto.rain.com
Mon Jul 11 02:01:21 CDT 2011


"4042966262" <wineforum-user at winehq.org> wrote:

> cd "~/.wine/drive_c/Program Files/AmazonXXX/XX"
>
> note i used the '' '' marks. not sure if suposed to.
> Xterm spit out:  -sh cd: cant cd to cd "~/.wine/drive_c/Program

IIRC ~ doesn't work inside "".  One of these should
work (provided Slitaz is using a "normal" shell):

  cd "$HOME/.wine/drive_c/Program Files/AmazonXXX/XX"

[$ expands within "" -- although not within '']

or

  cd ; cd ".wine/drive_c/Program Files/AmazonXXX/XX"

[cd to home directory first, then to its .wine/... subdirectory;
 this could also be tried with ' instead of "]

or

  cd ~/.wine/drive_c/Program\ Files/AmazonXXX/XX

[escape the space with a backslash]

or

  cd ~/.wine/drive_c/Program?Files/AmazonXXX/XX

[the shell should match ? in a filename to any character,
 including a blank]



More information about the wine-users mailing list