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]
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]