在 less 命令内进行正则表达式搜索

在 less 命令内进行正则表达式搜索

到底是什么正则表达式的种类搜索是否支持less(例如我可以使用\d+)?

man less对此并不清楚,我主要用谷歌搜索也没有得到太多有用的结果。谢谢。

答案1

Less 使用随系统编译的正则表达式库。

有时您可以使用 --version 选项来找出它是哪个版本:

less --version

第一行可能会告诉您它是用什么编译的,例如:

less 481 (PCRE regular expressions)
Copyright (C) 1984-2015  Mark Nudelman

less comes with NO WARRANTY, to the extent permitted by law.
For information about the terms of redistribution,
see the file named README in the less distribution.
Homepage: http://www.greenwoodsoftware.com/less

有关此主题的更多信息请参见此处:https://stackoverflow.com/questions/14698364/what-is-the-regular-expression-library-supplied-by-my-system

相关内容