two files to winMerge

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
wineuser23
Newbie
Newbie
Posts: 4
Joined: Sun Sep 02, 2018 5:32 am

two files to winMerge

Post by wineuser23 »

I click on two files in nemo and select "open with" -> winMerge in menu

winMerge is a script:

Code: Select all

LOCATION="/home/user...Merge/WinMergeU.exe"
PARAM=$(winepath -w "$*")
wine "${LOCATION}" "${PARAM}"
exit 0
It opens only one file, after I close winMerge it opens another file.
How can I make it that it will open both fies at once?
I am using linux mint.
User avatar
DarkShadow44
Level 8
Level 8
Posts: 1207
Joined: Tue Nov 22, 2016 5:39 pm

Re: two files to winMerge

Post by DarkShadow44 »

I guess the main problem here is, that nemo doesn't send both files to the same script, but for each files runs the script again. This is not a wine problem though.
Locked