gpt4 book ai didi

powershell - 在 powershell 中生成文本序列

转载 作者:行者123 更新时间:2023-12-03 13:59:45 28 4
gpt4 key购买 nike

出于某些测试目的,我只需要生成一个长的 xml 序列,其中包含很多元素比如 2009.10.30.00

这让我进入 linux shell 并运行

for day in $(seq -w 1 30) ; do  
for hour in $(seq -w 0 23) ;
do echo "<hour>2009.10.$day.$hour</hour>" ;
done ;
done >out

我如何在 Windows 上的 powershell 中做同样的事情?

最佳答案

非常相似...

$(foreach ($day in 1..30) {
foreach ($hour in 0..23) {
"<hour>2009.10.$day.$hour</hour>"
}
}) > tmp.txt

添加了文件重定向。如果您熟悉 bash,语法应该非常直观。

关于powershell - 在 powershell 中生成文本序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1913321/

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