3

我有一个 bash 脚本,它使用 inotifywait 来复制在目录中创建的文件。

但它正在复制我不想要的 vim 临时文件。

例如,如果我foo.txt在 vim 中创建和编辑它,我最终会得到一些/所有这些:

foo.txt~
.foo.txt.swp
.foo.txt.swx
4913

我正在尝试编写正则表达式来匹配这些,这就是我到目前为止所拥有的:

'^\*\.sw??$'

我希望这至少能匹配 swp 和 swx 文件,但事实并非如此。

4

2 回答 2

2
^.+?\.sw.?$

解释:

^ Start of string
.+? - Matches any character 1 or more (non greedy)
\. - matches literal .
sw.? - Matches sw followed by 1 character
$ - End of string
于 2012-11-17T18:09:30.570 回答
1

试试这个正则表达式

^.+\.sw[px]$
于 2012-11-17T18:08:47.920 回答