Quantcast
Channel: Convert file path from Linux to Windows format for Wine tool - Unix & Linux Stack Exchange
Viewing all articles
Browse latest Browse all 3

Answer by JdeBP for Convert file path from Linux to Windows format for Wine tool

$
0
0

Your script is actually very close. All that you need is the winepath tool, that comes as part of WINE, to do the conversion:

#!/bin/sh
exec wine /utils/wincmp.exe "`winepath --windows \"$1\"`" "`winepath --windows \"$2\"`"

Or using Laurent Bercot's execline:

#!/command/execlineb -S2
backtick -i left { winepath --windows $1 }
backtick -i right { winepath --windows $2 }
multisubstitute {
    importas left left
    importas right right
}
wine 
/utils/wincmp.exe ${left} ${right}

Viewing all articles
Browse latest Browse all 3

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>