gpt4 book ai didi

powershell - 重复将一个文件的内容复制到另一个文件

转载 作者:行者123 更新时间:2023-12-03 00:24:42 25 4
gpt4 key购买 nike

我正在尝试获取一个文件的内容,并将其复制多次到另一个文件中。我尝试了这个:

for ($i=0; $i -lt 5; $i++) { Get-Content source } | Out-File destination

但是我收到错误消息:“不允许使用空管道元素”。将圆括号放在for循环中,如下所示:
(for ($i=0; $i -lt 5; $i++) { Get-Content source }) | Out-File destination

导致“缺少表达式中的关闭')'。

最佳答案

 (get-content source) * 5 | out-file destination

关于powershell - 重复将一个文件的内容复制到另一个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6512379/

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