From 5ba280a47b81b324ff9b91092f908f12407f4244 Mon Sep 17 00:00:00 2001 From: adityarjadhav <114768050+adityarjadhav@users.noreply.github.com> Date: Sun, 23 Oct 2022 10:13:29 +0530 Subject: [PATCH] wget: add Hindi translation (#8943) --- pages.hi/common/wget.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages.hi/common/wget.md diff --git a/pages.hi/common/wget.md b/pages.hi/common/wget.md new file mode 100644 index 000000000..6d23fcba5 --- /dev/null +++ b/pages.hi/common/wget.md @@ -0,0 +1,37 @@ +# wget + +> वेब से फ़ाइलें डाउनलोड करें। +> HTTP, HTTPS और FTP का समर्थन करता है। +> अधिक जानकारी: . + +- किसी फ़ाइल में URL की अंतर्वस्तु डाउनलोड करें (इस मामले में "foo" नाम दिया गया है): + +`wget {{https://example.com/foo}}` + +- किसी फ़ाइल में URL की अंतर्वस्तु डाउनलोड करें (इस मामले में "bar" नाम दिया गया है): + +`wget --output-document {{bar}} {{https://example.com/foo}}` + +- अनुरोधों के बीच 3-सेकंड अंतराल के साथ एक एकल वेब पेज और उसके सभी संसाधन डाउनलोड करें (स्क्रिप्ट्स, स्टाइलशीट, चित्र, आदि।): + +`wget --page-requisites --convert-links --wait=3 {{https://example.com/somepage.html}}` + +- एक निर्देशिका और उसकी उप-निर्देशिकाओं में सभी सूचीबद्ध फ़ाइलें डाउनलोड करें (अंतर्निहित पृष्ठ तत्व डाउनलोड नहीं करता): + +`wget --mirror --no-parent {{https://example.com/somepath/}}` + +- डाउनलोड की गति और कनेक्शन के पुन: प्रयास की संख्या सीमित करें: + +`wget --limit-rate={{300k}} --tries={{100}} {{https://example.com/somepath/}}` + +- मूल प्रमाणीकरण का उपयोग करके किसी HTTP सर्वर से फ़ाइल डाउनलोड करें (FTP के लिए भी काम करता है): + +`wget --user={{उपयोगकर्ता_नाम}} --password={{पासवर्ड}} {{https://example.com}}` + +- अधूरा डाउनलोड जारी रखें: + +`wget --continue {{https://example.com}}` + +- टेक्स्ट फ़ाइल में संग्रहीत सभी URL को एक विशिष्ट निर्देशिका में डाउनलोड करें: + +`wget --directory-prefix {{निर्देशिका/का/पथ}} --input-file {{URLs.txt}}`