gpt4 book ai didi

list - 如何将项目附加到 csh 列表?

转载 作者:行者123 更新时间:2023-12-04 02:21:33 26 4
gpt4 key购买 nike

我想创建一个包含适用于某些字符串的列表csh 中的条件。

如何在不预先确定的情况下以动态方式添加到列表或数组列表或数组的大小?

c shell 中是否有 list.add 或类似的东西?

谢谢

最佳答案

您可以只使用set my_list = ( $my_list more ) 的形式。例如:

# Create original list
% set my_list = ( hello world )
% echo $my_list
hello world

# Append to the list
% set my_list = ( $my_list hey there )
% echo $my_list
hello world hey there

# Loop over the list to verify it does what we expect it to do
% foreach item ($my_list)
foreach? echo "-> $item"
foreach? end
-> hello
-> world
-> hey
-> there

关于list - 如何将项目附加到 csh 列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28584817/

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