gpt4 book ai didi

Powershell 调用 cmd.exe 命令,如 copy/b

转载 作者:行者123 更新时间:2023-12-04 00:53:11 28 4
gpt4 key购买 nike

我已经看到了Fast and simple binary concatenate files in Powershell

我对上面的答案不感兴趣我对下面的语法有什么问题感兴趣:

当我调用 cmd.exe 命令时,如 copy/b:

function join-file {
copy /b $($args[0])+$($args[1]) $($args[2])
}

我得到一个错误Copy-Item : A positional parameter cannot be found

最佳答案

正如错误暗示的那样,copy 实际上只是 Copy-Item 的别名,它没有 /b 参数。你可以调用cmd来使用它的复制命令。

function join-file {
cmd /c copy /b $($args[0])+$($args[1]) $($args[2])
}

关于Powershell 调用 cmd.exe 命令,如 copy/b,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64827770/

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