Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在linux中,如果我有:
文件夹1/——文件.txt文件夹2 / ——文件.txt
我可以做 $$ cat folder*/file.txt
我怎样才能在一个命令中,在 Windows 中做同样的事情?
for /f %%f in ('dir /b/s/a-d ^| findstr /r "folder*\\file*"') do type %%f
这是我目前能想到的最接近的事情。如果你打算在命令行中使用它,你应该使用%f. Type命令支持通配符,可以打印多个文件,但不搜索子目录中的文件。
%f
Type