6

我想做一个循环,并在循环内获取上一个和下一个项目。

目前,我正在使用以下循环:

for file in $dir;do
    [...do some things...]
done

我可以在 C 中做类似的事情,例如,file[i-1]/file[i+1] 来获取上一个和下一个项目吗?有什么简单的方法可以做到这一点吗?

4

2 回答 2

7
declare -a files=(*)
for (( i = 0; i < ${#files[*]}; ++ i ))
do
  echo ${files[$i-1]} ${files[$i]} ${files[$i+1]}
done

在第一次迭代中,索引 -1 将打印最后一个元素,在最后一次迭代中,索引 max+1 将不打印任何内容。

于 2012-12-01T11:57:41.913 回答
1

尝试这个:

previous=
current=
for file in *; do
  previous=$current
  current=$next
  next=$file
  echo $previous \| $current \| $next 
  #process item
done
previous=$current
current=$next
next=
echo $previous \| $current \| $next 
#process last item
于 2012-12-01T11:43:22.617 回答