Answers:
curl
是从链接下载内容的实用程序。默认情况下,它写入STDOUT(即从终端中的链接打印内容)
该-L
选项curl
表示:
-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...
操作员|
是一个管道,它将命令前的输出作为命令后的STDIN传递。
apt-key
是一个实用程序,用于添加可信密钥以适合存储库。您可以看到如何add
处理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.
如前所述,它-
告诉您apt key add
应该从STDIN中读取密钥文件,在这种情况下,这是从curl
命令中传递的内容,因此:
即使此链接已移动,也请下载该链接上的所有内容,并将其添加为受信任的APT存储库密钥。