使用 powershell 在文件末尾添加多行
Adding multiple line at the end of the file using powershell
我正在尝试使用 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 在文件末尾添加多行。 例如:该文件已经存在并且其中包含一些内容。
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