如何在整个系统(Linux)中搜索特定字符串?

前端之家收集整理的这篇文章主要介绍了如何在整个系统(Linux)中搜索特定字符串?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要找到这个字符串:
7z a -p

我试过了:

grep -iR“7z a -p”/

但它似乎在一段时间后挂起,有很多:

grep: /sys/class/vc/vcs5/power/autosuspend_delay_ms: Input/output error
grep: warning: /sys/class/vc/vcsa5/subsystem: recursive directory loop
grep: /sys/class/vc/vcsa5/power/autosuspend_delay_ms: Input/output error
grep: warning: /sys/class/vc/vcs6/subsystem: recursive directory loop

编辑 – 然而,这似乎只是看静态文本文件.另外,运行时区域,内存和进程呢?即整个系统?例如对于MysqL

ps aux | grep "MysqL -u user -p"

显示

38164  4292 pts/0    S+   13:16   0:00 MysqL -uodbcuser -px xxxxxxxx

有趣的是ps aux确实用xxxxx隐藏了密码.我可以尝试使用7zip,但速度非常快,它必须在运行ps aux命令的同时运行才能“捕获它”.

解决方法

您应该从命令中排除/ sys /,/ proc /和/ dev /之类的目录:
grep -iR --exclude-dir='/sys' --exclude-dir='/proc' --exclude-dir='/dev' "7z a -p" /
原文链接:https://www.f2er.com/linux/399246.html

猜你在找的Linux相关文章