search for: wine_with_log

Displaying 2 results from an estimated 2 matches for "wine_with_log".

2009 Jun 24
2
Script to run Wine and save log
Hi all, I created as little script to run wine and automatically log the output and some basic information to a file. It can be downloaded from here: http://www.mohag.net/wine_with_log How to use: 1. Download (or create) it somewhere and set it executable. wget http://www.mohag.net/wine_with_log chmod +x wine_with_log 2. Run application with wine_with_log rather than wine 3. Logs can be found in the wine-logs subdirectory (Filenames: <command>.<date>.<wine versio...
2010 Feb 08
7
Running wine via php
Hi, I'm trying to run a command with wine via php: Code: <?php $test = shell_exec('wine c:\\\\.exe'); echo $test; ?> [/code]