Answering your question, the following script uses the URL schema, available at the URL https://ftp.mozilla.org/pub/firefox/releases/latest-beta/README.txt, which defines how to download the latest beta version of firefox on the desired operating system and language.
The script accepts three optional arguments, operating system, language and version (stable or beta):
#!/bin/bash
# Programa para baixar ultima versao do firefox utilizando
# o esquema de URL https://download-installer.cdn.mozilla.net/pub/firefox/releases/latest/README.txt
# uso: baixafirefox [SISTEMA_OPERACIONAL] [LINGUAGEM] [TIPO]
# Valores das opcoes :
# SISTEMA_OPERACIONAL = win (default), win64, osx, linux e linux64
# LINGUAGEM = pt-BR (default), en-US, fr, es-AR etc
# TIPO = firefox-beta-latest (default) firefox-latest
#
# exemplo 1: baixar versao beta, para linux 64 bits, em ingles:
# $ baixafirefox linux64 en-US
# exemplo 2: baixar versao beta, para windows em portugues (valores padrao)
# $ baixafirefox
# exemplo 3: baixar versao estável, para windows em portugues (valores padrao)
# $ baixafirefox win pt-BR firefox-latest
#
### VARIAVEIS
os=$1
linguagem=$2
produto=$3
### PRINCIPAL
# popular variaveis com valores padrao de sistema operacional e
# linguagem, caso argumentos nao tenham sido passados
[ -z $os ] && os=win
[ -z $linguagem ] && linguagem=pt-BR
[ -z $produto ] && produto=firefox-beta-latest
echo "https://download.mozilla.org/?product=$produto&os=$os&lang=$linguagem"
wget --content-disposition https://download.mozilla.org/?product=$produto\&os=$os\&lang=$linguagem
The above script is only a starting point and should be improved according to your need.
Whenever you place code in one of your questions select it and format it with the shortcut
Ctrl+K
or with the button{}
question editor– Isac
Hello. You want to know the latest version, in this case 60.B3, or just download the latest version of firefox?
– Alisio Meneses
I was first trying to get him to get the last version of Mozilla for later download..
– dark777