gpt4 book ai didi

powershell - 使用 powershell 在文件末尾添加多行

转载 作者:行者123 更新时间:2023-12-01 23:19:42 27 4
gpt4 key购买 nike

我正在尝试使用 powershell 在文件末尾添加多行。例如:该文件已经存在并且其中包含一些内容。

abc.txt

abc
def
ghi
jkl
mno
pqr

所以 abc.txt 文件看起来像我上面提到的东西。现在我试图在文件末尾和新行中添加以下内容。

qwe
asd
zxc
vbn

最终输出将是 - abc.txt

abc
def
ghi
jkl
mno
pqr
qwe
asd
zxc
vbn

因为我是新手,所以我尝试在已成功执行的文件中添加一行,但不知道添加多行。

 Add-Content "./sample3.txt" "This is the last line `n"

最佳答案

您可以添加如下所示的内容。 Read more on here string

$contentToAdd = @"
qwe
asd
zxc
vbn
"@

Add-Content "C:\dev\abc.txt" $contentToAdd

关于powershell - 使用 powershell 在文件末尾添加多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68250521/

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