Hi all, I'm running HeidiSQL in wine, and it can do ssh tunnels, but only using plink.exe. So can I create a fake plink, that is actually a linux program, that will grab the command line arguments Heidi sends and do my own ssh -L with it? I tried just calling a bash script plink.exe but wine didn't like that. Any ideas? Thanks!
wine cmd /c /bin/ps aux should work (For exemple) If you really need a .exe file, test.c Code: #include <stdio.h> int main() { system("cmd /c /bin/ps aux"); } Then, build it like this: i586-mingw32msvc-gcc test.c [/code]