https://bugs.winehq.org/show_bug.cgi?id=55955
--- Comment #8 from gerard.labadie@sysgroup.fr --- if you want to automate downloading the zip of Captvty (2 or 3)
have a look at
https://framagit.org/Paullux/captvty-script-installateur-pour-ubuntu
in the script for V2 or V3, they do
adresse=$(wget -q -O- 'http://v3.captvty.fr' | sed -n 's/.*href="(//.+.zip).*/http:\1/p') test -n "$adresse" && wget -qO /tmp/Captvty.zip "$adresse" if test -n /tmp/Captvty.zip then unzip -d "$HOME/.captvty_V3/" /tmp/Captvty.zip && rm /tmp/Captvty.zip fi