gpt4 book ai didi

Windows 相当于 Unix "find"命令?

转载 作者:IT王子 更新时间:2023-10-29 01:21:40 31 4
gpt4 key购买 nike

我希望能够使用命令行而不是 GUI 界面在 Windows 机器上搜索文件。例如,在 Linux 上,我使用:

找到。 -name "*.c"-exec grep -Hn "sqlcommand"{}\;

Windows 有类似的东西吗?

最佳答案

在长时间使用 Unix 系统后,我不得不在 Windows 上制作一些脚本。对于严肃的脚本编写,Powershell 是您应该使用的工具。您可以使用 powershell find string in file 等关键字搜索 Internet,或其他组合,您会发现很多信息。这就是问题所在,一个简单的 oneliner 就像

get-childitem C:\yourdir -include *.c -recursive |Select-String -pattern sqlcommand

对你帮助不大。您需要找到 PowerShell IDE,学习不同的语法并尝试喜欢/接受这些新东西。

当你想更频繁地做这些事情时,准备学习 PowerShell,或者尝试在你的 windows 上获得一个类 Unix 环境(cygwin,或更好的 git for windows)

关于Windows 相当于 Unix "find"命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28329438/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com