"rubenvb" <wineforum-user@xxxxxxxxxx> wrote: > I know that to execute a win32 executable, I need to do: > "wine some_executable.exe" ... is there some hybrid wine/bash > shell that can run win32 executables without extra arguments? If you have only a limited number of such executables to deal with, you can use aliases, something along the lines of (untested): alias some_executable='cd /path/to/correct/directory ; wine some_executable.exe "$@"' (That's supposed to be all on one line, and the syntax may not be exactly right, but you get the idea. "man bash" for the details.)