在unix中查找具有与另一个文件类似的字符的文件名

时间:2017-08-18 05:26:46

标签: unix

我有两个文件,名称中有一些相似的字符串,我想在第二个文件中搜索对应于unix中的另一个文件

例如: -

@

我怀疑的是,当我找到标志文件时如何找到对应的n文件。

1 个答案:

答案 0 :(得分:0)

man agrep

NAME
       agrep - search a file for a string or regular expression, with approxi‐
       mate matching capabilities

我们试一试:

$ ls | grep -v abc.flag.1502624856 > file       # remove the searched file 
$ agrep -B -y abc.flag.1502624856 file
agrep: 1 word matches within 8 errors
abc.n.1502654789

由于它是近似模式匹配,因此可能存在误报。