जवाबों:
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
कमांड से पाइप किया गया था, इसलिए, संक्षेप में:
इस लिंक पर जो कुछ भी है उसे डाउनलोड करें, भले ही वह स्थानांतरित हो गया हो, और इसे एक विश्वसनीय एपीटी रिपॉजिटरी कुंजी के रूप में जोड़ें।