📜  将多个文件的内容复制到一个文件 powershell - TypeScript 代码示例
📅  最后修改于: 2022-03-11 14:48:24.278000             🧑  作者: Mango
代码示例1
Get-ChildItem d:\scripts -include *.txt -rec | ForEach-Object {gc $_; ""} | out-file d:\scripts\test.txt