"4042966262" <wineforum-user@xxxxxxxxxx> 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]