To install Microsoft Edge, the suggestion is to:
wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
however, this is now deprecated. So the suggestion is to now use something like:
curl -sS https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/spotify.gpg
However, I'm not quite clear on how to adapt that curl
command to fit the Microsoft link above. When using tee
, this is added to an existing Microsoft .gpg
file, or am I creating it?
Context appreciated to better understand.