Linux 内核 2.6.18-128.1.10.el5 中 grep 的默认绝对路径
我大部分工作的服务器最近发生了变化,所有 PHP exec() 现在都需要绝对路径。 这比让 IT 在这里询问要快。
那么,有人知道 grep 默认在哪里吗?
There was a recent change on the server I do most of my work on and all PHP exec()'s now need absolute paths. Its faster than asking IT to ask it here.
So, does anyone know where grep is by default?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了将来使用,您应该熟悉 "which" 命令。 它将通过您的默认搜索路径寻找可执行文件。 通常系统路径将包含在其中。 使用 -a 选项查找路径上程序的所有版本。
因此,如果您的路径设置正确,“which grep”应该可以完成这项工作。
For future use you should familiarize yourself with the "which" command. It will go through your default search path looking for an executable. Normally the system paths will be included therein. Use the -a option to find all versions of a program on your path.
So "which grep" should do the job if your path is set up correctly.
应该在 /bin/grep 中
Should be in /bin/grep