📜  bash 在 while 循环中更改变量 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:07.181000             🧑  作者: Mango

代码示例1
i=1
while read x; do
   i=$(($i + 1))
   echo $i
done <<<$(find tmp -type f)
echo $i