如何从Windows的命令行示例中使用Find命令在文件中查找指定的字符串?

Windows operating systems provide the tool named find to search text files for a given term or string. Linux also have a command with the same name but it is used to search files and folders names not file contents. Windows find command is very simple and easy command to work.

Windows操作系统提供名为find的工具,以在文本文件中搜索给定的术语或字符串。 Linux也有一个具有相同名称的命令,但是它用于搜索文件和文件夹名称,而不是文件内容。 Windows find命令非常简单易用。

帮帮我 (Help)

Help information about the find command can be printed with the /? option like below.

可以使用/?打印关于find命令的帮助信息/? 如下所示的选项。

find /?
如何从Windows的命令行示例中使用Find命令在文件中查找指定的字符串?_第1张图片 Help 帮帮我

句法(Syntax)

Syntax of the find command provides options , string to search and file or drive or path to be searched.

find命令的语法提供options,要搜索的字符串以及要搜索的文件或驱动器或路径。

FIND [options] "string" [[drive:][path]filename[ ...]]

查找字符串 (Find String)

We will simple made a search in files. We will do not provide any option. Given term will be search in given file , path or drive. In this example we will search the term ismail in C:\users.txt .

我们将简单地在文件中进行搜索。 我们将不提供任何选择。 给定术语将在给定文件,路径或驱动器中搜索。 在此示例中,我们将在C:\users.txt搜索术语ismail

$ find "ismail" C:\users.txt
Find String Find String 查找字符串

From output we can see that the term ismail is found. The filename also given because multi file search.

从输出中我们可以看到找到了术语ismail 。 也提供文件名,因为可以进行多文件搜索。

搜索多个文件 (Search Multiple Files

你可能感兴趣的:(linux,python,grep,正则表达式,java)