我只是尝试传递一个$
以更少开头的搜索模式:
less +/'\$l' myfile.pl
我得到了
There is no -l option ("less --help" for help)
阅读手册后,我尝试了备用-p
选项
less -p'\$l' myfile.pl
并得到同样的错误。
然后我发现,(nb 后面的空格-p
)
less -p '\$l' myfile.pl
有效,即打开文件没有错误消息并跳转到第一次出现的$l
.
长选项变体--pattern=$l
不起作用
less --pattern='\$l' myfile.pl
There is no -l option ("less --help" for help)
而空间而不是=
作品
less --pattern '\$l' myfile.pl
这是
less -V
less 458 (POSIX regular expressions)
Copyright (C) 1984-2012 Mark Nudelman
在 openSUSE Leap 42.3 上
现在的问题是:这是一个错误吗?