How to download the latest .deb of Vivaldi browser using wget with the help of wildcards? Vivaldi can't be downloaded without entering the exact name and number of the latest build. For example,
wget I tried to replace the middle segment, containing numbers with the wildcard asterisk (*) but it didn't work.
wget Maybe there are other wildcard symbols, less known, that could do the job.
51 Answer
Wildcards in wget is unrealistic as the tool will not know the name of every file in a given directory on the web server. If your goal is to have an easy way to keep the Vivaldi browser up to date, then you can use their repository. Here's how to set it up:
Import the public key (to allow for verification of the APT repository)
wget -qO- | sudo apt-key add -Add the repository
sudo add-apt-repository 'deb stable main'Install Vivaldi
sudo apt update && sudo apt install vivaldi-stable
Now every time your system does an apt update, Vivaldi will be included in the check.
Source: Manual setup of the Vivaldi Linux repositories | Vivaldi Browser Help
0