At work we constantly write CMD batch scripts that will take one, two, or three folders as parameters.
As sometimes the end users would be interested in using those scripts, and as is it long, boring, error-prone and fastidious to type in cmd a command-line with three folder paths as arguments I would like to be able to do like this on Linux:
my_destination_folder="$(zenity --folder-selector --title "choose your folder")"
with some tool like:
FOR /F "usebackq tokens=*" %%G IN (`XXX.exe`) do SET my_destination_folder=%%G
Do you know any simple tool that can be my XXX.exe?
Possibly a standalone, minimalistic tool...
Thank you

