有没有办法在WIndows操作系统上使用UNIX GREP命令

时间:2009-11-05 07:15:45

标签: windows unix grep

在WINDOWS操作系统的UNIX中我需要一些像GREP这样的命令,如果在Windows中有什么方法可以使用grep或任何等效的命令?

10 个答案:

答案 0 :(得分:16)

一些选项:

答案 1 :(得分:4)

如果你想要整套UNIX工具(编译器,X服务器,所有),Cygwin是好的。 Cygwin DLL实际上为您提供了一个完整的UNIX环境,命令行工具,GUI内容和编程环境,因此您可以轻松地将UNIX软件移植到Windows。

我更喜欢GnuWin32(GNU for Windows),因为我可以添加我需要的东西。它包含在包中,因此您无需安装该批次。它们也是为Windows本地编译的,不需要Cygwin DLL。

例如,我最近有一种情况,我只需要在特定的盒子上使用awk来进行快速和脏的文本文件操作。我不得不安装整个Cygwin环境而且GnuWin32更容易(也更快)。

grep而言,您可能也有兴趣知道Windows findstr比以前的日子更强大 - 它现在可以做正则表达式。它仍然不是我心爱的UNIX工具链后端的疙瘩:-)但它可能是一个可行的选择,取决于您的需求:

C:\Documents and Settings\Pax> 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 occurances 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.

答案 2 :(得分:1)

一种方法是安装Cygwin。 Cygwin使用一个模拟POSIX行为的DLL。

Unix工具有几个原生项目:GnuWin32UnxUtils

答案 3 :(得分:1)

安装Cygwin。它是一个unix模拟器,可以让你在windows上使用正则表达式。

答案 4 :(得分:1)

此软件过去对我有用: The Berkeley Utilities

答案 5 :(得分:1)

如果你没有在窗口上使用grep,请不要担心。你可以使用像其中一个提到的findstr,或者只是做一些vbscript编程。

搜索模式的示例:(相当于grep“word”文件)

Set objFS = CreateObject("Scripting.FileSystemObject")
strFile= "C:\test\file"
Set objFile = objFS.OpenTextFile(strFile,1)
Do Until objFile.AtEndOfStream 
    strLine = objFile.ReadLine
    If InStr(strLine,"word")> 0 then
             Wscript.Echo "Found word: " & strLine
        End If
Loop

当然,如果您能够负担得起将资源下载到您的环境中的奢侈品,请使用GNU grep(和其他人)。它们可以使您的批处理脚本体验更轻松。

答案 6 :(得分:0)

您可以尝试Cygwin,它是unix系统中常见的完整命令行工具集。

答案 7 :(得分:0)

MSYS是另一个(轻量级)选项。

答案 8 :(得分:0)

您可以尝试在Windows上安装chocolatey,然后安装Gow工具 这将在Windows上为您提供grep

Gow代表Windows上的GNU。它在unix command line utilities上提供windows

答案 9 :(得分:0)

不是grep,但您可以通过choco install -y ag安装the silver searcherchocochocolatey的位置。