68

你知道如何用谷歌查找特殊字符吗...?

我正在查看 bash 代码,并且有 ## 运算符。我想知道它做了什么,但我无法找到保护角色的方法(我不确定这是否可能)。

当您正在寻找一些代码模式时,这尤其令人讨厌,某些字符总是被忽略。

4

2 回答 2

10

如此处所述, Google 会从查询中去除大部分标点符号,因此它不会帮助您使用 bash 语法。

在 bash 文档中搜索字符串“##”非常容易:只需运行“info bash”,点击“s”,然后输入“##”作为搜索字符串。

于 2009-05-09T01:48:22.647 回答
2

google strips puntuation, imho, because:

  • it's somewhere used for special search (chars like - to exclude, +to add and 10..20 to specify a range)
  • to avoid spammers to get email addresses (characters like @ or .) in my experience, it's even impossible to escape special characters. the only solution I found, by now, is using yahoo http://it.search.yahoo.com/
于 2010-11-18T18:56:53.533 回答