When I tried to install a current version of a software, someone provided the URL for where the binaries are located so that it can be used with the command below.
curl -silent -location https://blabla | sudo --preserve-env bash -
I've been informed that under Linux, it's unusual to download the binaries and install those, like it's common in Windows. Now, I'd like to install Chrome but the command below didn't give me anything useful.
sudo apt install chrome
I only get the message saying that Unable to locate package chrome. So I figure that I probably need to use the syntax with curl and bash. However, I don't know where I should obtain the URL that's supposed to be used.
At the Chrome's page, there's only a button to download the binaries but that's the Window way, I understand. I prefer to do it properly, as supposed to.
Where do I get the URL to curl for installing the binaries?