विंडोज़ में फ़ाइंड और फ़ॉरेस्ट कमांड के बीच अंतर क्या है?


24

विंडोज में, कमांड findऔर findstrकमांड में क्या अंतर हैं ?

दोनों फाइलों में पाठ खोजते हैं:

खोज

C:\> find /?
Searches for a text string in a file or files.

FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] "string" [[drive:][path]filename[ ...]]

  /V         Displays all lines NOT containing the specified string.
  /C         Displays only the count of lines containing the string.
  /N         Displays line numbers with the displayed lines.
  /I         Ignores the case of characters when searching for the string.
  /OFF[LINE] Do not skip files with offline attribute set.
  "string"   Specifies the text string to find.
  [drive:][path]filename
             Specifies a file or files to search.

If a path is not specified, FIND searches the text typed at the prompt
or piped from another command.

findstr

C:\> findstr /?
Searches for strings in files.

FINDSTR [/B] [/E] [/L] [/R] [/S] [/I] [/X] [/V] [/N] [/M] [/O] [/P] [/F:file]
        [/C:string] [/G:file] [/D:dir list] [/A:color attributes] [/OFF[LINE]]
        strings [[drive:][path]filename[ ...]]

  /B         Matches pattern if at the beginning of a line.
  /E         Matches pattern if at the end of a line.
  /L         Uses search strings literally.
  /R         Uses search strings as regular expressions.
  /S         Searches for matching files in the current directory and all
             subdirectories.
  /I         Specifies that the search is not to be case-sensitive.
  /X         Prints lines that match exactly.
  /V         Prints only lines that do not contain a match.
  /N         Prints the line number before each line that matches.
  /M         Prints only the filename if a file contains a match.
  /O         Prints character offset before each matching line.
  /P         Skip files with non-printable characters.
  /OFF[LINE] Do not skip files with offline attribute set.
  /A:attr    Specifies color attribute with two hex digits. See "color /?"
  /F:file    Reads file list from the specified file(/ stands for console).
  /C:string  Uses specified string as a literal search string.
  /G:file    Gets search strings from the specified file(/ stands for console).
  /D:dir     Search a semicolon delimited list of directories
  strings    Text to be searched for.
  [drive:][path]filename
             Specifies a file or files to search.

Use spaces to separate multiple search strings unless the argument is prefixed
with /C.  For example, 'FINDSTR "hello there" x.y' searches for "hello" or
"there" in file x.y.  'FINDSTR /C:"hello there" x.y' searches for
"hello there" in file x.y.

Regular expression quick reference:
  .        Wildcard: any character
  *        Repeat: zero or more occurences of previous character or class
  ^        Line position: beginning of line
  $        Line position: end of line
  [class]  Character class: any one character in set
  [^class] Inverse class: any one character not in set
  [x-y]    Range: any characters within the specified range
  \x       Escape: literal use of metacharacter x
  \<xyz    Word position: beginning of word
  xyz\>    Word position: end of word

For full information on FINDSTR regular expressions refer to the online Command
Reference.

1
यह शायद विकासवाद के बारे में अधिक है। ढूँढें DOS / UNIX दिनों में वापस जाता है, और बाद में Windows में FINDSTR जोड़ा गया। दोनों शायद विकसित हो गए हैं, और अधिक समान हो गए हैं।
KCotreau

मैं @ KCotreau की समयावधि से सहमत हूं: FIND प्राचीन है और FINDSTR नया है। मुझे संदेह है कि FIND और FINDSTR की तरह विकसित हुआ है; इसके बजाय, मेरा मानना ​​है कि बैकवर्ड संगतता बनाए रखने के लिए FIND को अपंग डायनासोर के रूप में संरक्षित किया गया था (जैसा कि DOS सामान्य रूप से था), (जैसे कि बैच फ़ाइलें जो इसका उपयोग करती हैं), जबकि सुविधाओं का एक सभ्य सेट प्रदान करने के लिए FINDSTR जोड़ा गया था। ।
स्कॉट

1
ओह, और वैसे भी, डॉस / विंडोज फैंड कमांड यूनिक्स findकमांड की तरह कुछ भी नहीं है ; बल्कि, जैसा कि विरोधाभास नीचे का सुझाव देता है, FIND एक grep(या शायद fgrep) के पानी से भरे संस्करण की तरह है ।
स्कॉट

क्या आप मदद में अंतर नहीं देखते हैं?
फुलकव

जवाबों:


17

जैसा कि ऊपर दिखाया गया है, findstrनियमित अभिव्यक्ति समर्थन जोड़ता है, इसलिए यह अधिक पसंद है grep


3
लेकिन अगर आपने उन दोनों का अक्सर उपयोग नहीं किया है, तो यह सटीक उपयोग और अंतर को स्पष्ट नहीं करता है। इसलिए उनकी धारणाएं अलग हो सकती हैं क्योंकि आपको अब तक अलग-अलग अनुभव हो सकते हैं। सीखने और करियर की एक बड़ी समस्या का हिस्सा मैं एक्सपीरियंस गैप को कहता हूं। लम्बी कहानी।
crosenblum

5

Findstr में अधिक खोज विकल्प हैं और नियमित अभिव्यक्ति का समर्थन करता है। मैंने पाया कि फ़ाइल नाम में वाइल्ड कार्ड के साथ फ़ॉरेस्ट काम नहीं करता है।

नीचे दी गई कमांड, Quant_2013-10-25 _ * पैटर्न के साथ कई फाइलों में खोज स्ट्रिंग की सभी घटनाओं को लौटाती है

find /I "nFCT255c9A" D:\Comp1\Logs\Quant_2013-10-25_*.log 

निम्न आदेश कुछ भी नहीं देता है या बस काम नहीं करता है

findstr nFCT255c9A D:\Comp1\Logs\Quantum_2013-10-25_*.log

findइसकी कुछ सीमाएँ भी हैं। उदाहरण के लिए, आप इसका उपयोग प्रत्येक पंक्ति के लिए संख्याओं को जोड़ने के लिए नहीं कर सकते क्योंकि find/n""यह कुछ भी मेल नहीं खाता। इसके लिए आपको उपयोग करना होगाfindstr
पचेरियर

1
में वाइल्डकार्ड के साथ समस्या को दोहराने में सक्षम नहीं है findstrMicrosoft Windows 7 Professional, 6.1.7601 Service Pack 1 Build 7601
lordcheeto 15


1

findstr कई उपयोगी सुविधाओं के साथ खोज की कार्यक्षमता का विस्तार करता है। कुछ प्रमुख जोड़ शामिल हैं

  1. findstr कई खोज स्ट्रिंग्स का समर्थन करता है
  2. findstr इनपुट के रूप में एक फ़ाइल ले सकता है जिसमें खोज करने के लिए फ़ाइल नाम या निर्देशिकाएं होती हैं
  3. findstr नियमित अभिव्यक्ति का समर्थन करता है

न तो फ़ंक्शन बड़ी फ़ाइलों या बड़ी संख्या में फ़ाइलों के लिए उपयुक्त है।


हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.