gpt4 book ai didi

powershell - 使用 PowerShell 将文本添加到文本文件中的每一行

转载 作者:行者123 更新时间:2023-12-03 20:06:25 26 4
gpt4 key购买 nike

我想在 .txt 文档中每行文本的末尾添加字符。

#Define Variables
$a = c:\foobar.txt
$b = get-content $a

#Define Functions
function append-text
{
foreach-Object
{
add "*"
}
}

#Process Code
$b | append-text

类似的东西。本质上,加载给定的文本文件,在该文本文件的每一行文本的末尾添加一个“*”,保存并关闭。

最佳答案

没有必要的功能。这样做:

$b|foreach {$_ +  "*"}

关于powershell - 使用 PowerShell 将文本添加到文本文件中的每一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4952535/

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