1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-08 22:25:59 +02:00

findstr: add Hindi Translation (#14493)

* Create findstr.md

* Fixed Link

* Update findstr.md

* findstr: translate placeholders to Hindi

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Vedant Yadav 2024-11-02 22:57:29 +05:30 committed by GitHub
parent 0be909ba50
commit 065743dfc4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,36 @@
# findstr
> एक या एक से अधिक फाइलों में निर्दिष्ट टेक्स्ट खोजें।
> अधिक जानकारी: <https://learn.microsoft.com/windows-server/administration/windows-commands/findstr>
- सभी फाइलों में एक या एक से अधिक स्ट्रिंग्स खोजें:
`findstr "{{स्ट्रिंग1 स्ट्रिंग2 ...}}" *`
- एक पाईप्ड कमांड के आउटपुट में एक या एक से अधिक स्ट्रिंग्स खोजें:
`{{निर्देशिका}} | findstr "{{स्ट्रिंग1 स्ट्रिंग2 ...}}"`
- सभी फाइलों में पुनरावृत्तिपूर्वक एक या एक से अधिक स्ट्रिंग्स खोजें:
`findstr /s "{{स्ट्रिंग1 स्ट्रिंग2 ...}}" *`
- केस-इंसेंसिटिव सर्च का उपयोग करके स्ट्रिंग्स खोजें:
`findstr /i "{{स्ट्रिंग1 स्ट्रिंग2 ...}}" *"`
- नियमित एक्सप्रेशंस का उपयोग करके सभी फाइलों में स्ट्रिंग्स खोजें:
`findstr /r "{{एक्सप्रेशंस}}" *`
- सभी टेक्स्ट फाइलों में एक लिटरल स्ट्रिंग (जिसमें स्पेसेस शामिल हैं) खोजें:
`findstr /c:"{{स्ट्रिंग1 स्ट्रिंग2 ...}}" *.txt`
- प्रत्येक मेल खाने वाली लाइन के पहले लाइन नंबर दिखाएं:
`findstr /n "{{स्ट्रिंग1 स्ट्रिंग2 ...}}" *`
- केवल उन फाइलों के नाम दिखाएं जिनमें मैच पाया गया हो:
`findstr /m "{{स्ट्रिंग1 स्ट्रिंग2 ...}}" *`