You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
在文件很少的情况下(有搜索内容高亮,效果最好):
grep -r '内容' .
在终端回显下限制显示从a-b个搜索项(无高亮):
grep -r '内容' . | sed -n 'a,bp'
在文件非常多的情况下,要求输出完整内容(无高亮):
方法一(推荐):
grep -r '内容' . >> result.txt
方法二(复杂):
find -name '*' -print0 | xargs -0 grep '内容' >> result.txt
之后打开result.txt文件即可查看文件搜索结果。
https://www.jianshu.com/p/70e14cbe3ea3
使用 Git Bash 在 Windows 上运行 Bash 命令
你可能知道 Git 是什么。它是由 Linux 创建者 Linus Torvalds 开发的版本控制系统。
Git for Windows 是一组工具,能让你在命令行和图形界面中使用 Git。Git for Windows 中包含的工具之一是 Git Bash。
Git Bash 为 Git 命令行提供了仿真层。除了 Git 命令,Git Bash 还支持许多 Bash 程序,如 ssh、scp、cat、find 等。
换句话说,你可以使用 Git Bash 运行许多常见的 Linux/Bash 命令。
你可以从其网站免费下载和安装 Git for Windows 工具来在 Windows 中安装 Git Bash。
https://www.51cto.com/article/597456.html
效果预览:
result.txt
Beta Was this translation helpful? Give feedback.
All reactions