作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建一个包含适用于某些字符串的列表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/
我是一名优秀的程序员,十分优秀!