Code: Select all
#!/usr/bin/bash
path=/home/mark/.local/share/lutris/runners/wine/wine-tkg-staging-7.6.r0/bin
WINEPREFIX=$HOME/Oblivion $path/wine start 'C:\The Elder Scrolls IV\Tools\LOOT\LOOT.exe' 1> LOOT.log
Any ideas?
Code: Select all
#!/usr/bin/bash
path=/home/mark/.local/share/lutris/runners/wine/wine-tkg-staging-7.6.r0/bin
WINEPREFIX=$HOME/Oblivion $path/wine start 'C:\The Elder Scrolls IV\Tools\LOOT\LOOT.exe' 1> LOOT.log
Code: Select all
WINEPREFIX=$HOME/Oblivion $path/wine start 'C:\The Elder Scrolls IV\Tools\LOOT\LOOT.exe' &> LOOT.log
# or if you also need the error messages
WINEPREFIX=$HOME/Oblivion $path/wine start 'C:\The Elder Scrolls IV\Tools\LOOT\LOOT.exe' >> LOOT.log 2>&1