উইন্ডোজে অনুসন্ধান এবং সন্ধানের আদেশগুলির মধ্যে পার্থক্য কী?


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
এটি সম্ভবত বিবর্তন সম্পর্কে আরও বেশি। অনুসন্ধানটি ডস / ইউনিক্স দিনগুলিতে ফিরে যায় এবং পরে উইন্ডোজে এফআইএনডিআরএসটি যুক্ত করা হয়েছিল। উভয়ই সম্ভবত বিবর্তিত হয়েছে, এবং আরও এক হয়ে গেছে।
কেকটরউ

আমি @ কেকট্রের সময়রেখার সাথে একমত: FIND প্রাচীন এবং FINDSTR আরও নতুন। আমি সন্দেহ করি যে FIND আরও FINDSTR এর মতো হয়ে উঠেছে; বরং, আমি বিশ্বাস করি যে পশ্চাদপদ সামঞ্জস্যতা বজায় রাখার জন্য (যেমন ডস যেমন ছিল সাধারণভাবে) ডিনোস’র হিসাবে সংরক্ষণ করা হয়েছিল (উদাহরণস্বরূপ, ব্যাচ ফাইলগুলি যা এটি ব্যবহার করে), যখন বৈশিষ্ট্যগুলির একটি শালীন সেট সরবরাহ করার জন্য FINDSTR যুক্ত করা হয়েছিল ।
স্কট

1
ওহ, এবং যাইহোক, ডস / উইন্ডোজ এফআইএনডি কমান্ড ইউনিক্স findকমান্ডের মতো কিছুই নয় ; পরিবর্তে, প্যারাড্রয়েড নীচের পরামর্শ হিসাবে, FIND grep(বা সম্ভবত fgrep) এর জল-ডাউন সংস্করণের মত ।
স্কট

আপনি সাহায্যের মধ্যে পার্থক্য দেখতে পাচ্ছেন না?
ফুক্লভ

উত্তর:


17

উপরে প্রদর্শিত হিসাবে, findstrনিয়মিত এক্সপ্রেশন সমর্থন যোগ করে, তাই এটি আরও পছন্দ grep


3
তবে আপনি যদি উভয়টি ঘন ঘন ব্যবহার না করে থাকেন তবে এটি সঠিক ব্যবহার এবং পার্থক্যটি সর্বদাই পরিষ্কার নয়। সুতরাং তাদের উপলব্ধিগুলি পৃথক হতে পারে কারণ আপনারা তখন বিভিন্ন অভিজ্ঞতা অর্জন করতে পারেন। শেখার এবং ক্যারিয়ারে একটি বিশাল সমস্যার অংশ আমি অভিজ্ঞতা গ্যাপ বলি। দীর্ঘ কাহিনী.
ক্রোজেনব্লাম

5

ফাইন্ডস্ট্রে আরও অনুসন্ধানের বিকল্প রয়েছে এবং এটি নিয়মিত এক্সপ্রেশন সমর্থন করে। আমি খুঁজে পেয়েছি যে ফাইন্ডস্টার ফাইলের নামে ওয়াইল্ড কার্ডের সাথে কাজ করে না।

নীচের কমান্ডটি কোয়ান্ট_2013-10-25 _ * প্যাটার্ন দিয়ে একাধিক ফাইলগুলিতে অনুসন্ধানের স্ট্রিংয়ের সমস্ত উপস্থিতি ফিরে আসে log

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
লর্ডচিটো

3

ওল্ড নিউ থিং ব্লগ এই পোস্টগুলিতে এই সরঞ্জামগুলিতে স্পর্শ করে।

সংক্ষেপে: সামান্য বিভিন্ন প্রয়োজনের সাথে সমান্তরালে বিকাশযুক্ত সরঞ্জামগুলি; এগুলি কখনই কোনও একক সরঞ্জামে মিশে যায় নি।


1

findstr কার্যকারিতা প্রসারিত করে খোঁজ বিভিন্ন দরকারী বৈশিষ্ট্য সঙ্গে। কিছু মূল সংযোজন অন্তর্ভুক্ত

  1. Findstr একাধিক অনুসন্ধান স্ট্রিং সমর্থন করে
  2. ফাইন্ডস্টার অনুসন্ধানের জন্য ফাইলের নাম বা ডিরেক্টরি সম্বলিত কোনও ফাইল ইনপুট হিসাবে নিতে পারে
  3. Findstr নিয়মিত অভিব্যক্তি সমর্থন করে

উভয়ই ফাংশন বড় ফাইল বা বিপুল সংখ্যক ফাইলের জন্য উপযুক্ত নয়।


আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.