mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-31 20:15:42 +02:00

* pages.hi: fix username translation, Windows paths Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages.hi: fix false positives from username space fix Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
20 lines
1.3 KiB
Markdown
20 lines
1.3 KiB
Markdown
# find
|
|
|
|
> एक या अधिक फ़ाइलों में निर्दिष्ट स्ट्रिंग ढूंढें।
|
|
> अधिक जानकारी: <https://learn.microsoft.com/windows-server/administration/windows-commands/find>।
|
|
|
|
- वे पंक्तियाँ खोजें जिनमें एक निर्दिष्ट स्ट्रिंग हो:
|
|
|
|
`find "{{स्ट्रिंग}}" {{फ़ाइल_या_निर्देशिका\का\पथ}}`
|
|
|
|
- वे पंक्तियाँ प्रदर्शित करें जिनमें निर्दिष्ट स्ट्रिंग नहीं है:
|
|
|
|
`find "{{स्ट्रिंग}}" {{फ़ाइल_या_निर्देशिका\का\पथ}} /v`
|
|
|
|
- निर्दिष्ट स्ट्रिंग वाली पंक्तियों की संख्या प्रदर्शित करें:
|
|
|
|
`find "{{स्ट्रिंग}}" {{फ़ाइल_या_निर्देशिका\का\पथ}} /c`
|
|
|
|
- पंक्तियों की सूची के साथ पंक्ति संख्याएँ प्रदर्शित करें:
|
|
|
|
`find "{{स्ट्रिंग}}" {{फ़ाइल_या_निर्देशिका\का\पथ}} /n`
|