Jawaban:
curl
adalah utilitas untuk mengunduh sesuatu dari tautan. Secara default, ini menulis ke STDOUT (yaitu mencetak barang dari tautan di terminal)
The -L
pilihan untuk curl
sarana:
-L, --location
(HTTP/HTTPS) If the server reports that the requested page has moved to a
different location (indicated with a Location: header and a 3XX response
code), this option will make curl redo the request on the new place...
Operator |
adalah pipa, yang meneruskan output dari perintah sebelum sebagai STDIN dari perintah setelahnya.
apt-key
adalah utilitas untuk menambahkan kunci tepercaya ke apt untuk repositori. Anda dapat melihat apa yang add
terjadi dengan man apt-key
:
add <filename>
Add a new key to the list of trusted keys. The key is read from the
filename given with the parameter filename or if the filename is -
from standard input.
Seperti yang disebutkan, -
mengatakan apt key add
bahwa file kunci harus dibaca dari STDIN, yang dalam hal ini adalah apa yang disalurkan dari curl
perintah, jadi, dalam jumlah:
Unduh apa pun yang ada di tautan ini, meskipun telah dipindahkan, dan tambahkan sebagai kunci repositori APT yang tepercaya.