shell脚本中的全局变量

发布于 2024-12-11 11:49:24 字数 332 浏览 0 评论 0原文

我想在以下代码中将 z 设为全局变量:

#!/bin/bash                                                                                                                          
z=0;
find $1 -name "*.txt" | \
while read file
do
  i=1;
  z=`expr $i + $z`;
  echo "$z";
done
echo "$z";

最后一条语句始终输出“0”。为什么?

I would like to make z a global variable in the following code:

#!/bin/bash                                                                                                                          
z=0;
find $1 -name "*.txt" | \
while read file
do
  i=1;
  z=`expr $i + $z`;
  echo "$z";
done
echo "$z";

The last statement always outputs "0". Why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

辞旧 2024-12-18 11:49:24

简单方法

find ...  | while read ...; done

转换为不带管道的表单的 是使用 进程替换< /a>:

while read ...; done < <(find ...)

可读性有所下降。

The simple way to translate

find ...  | while read ...; done

to a form without pipes is using process substitution:

while read ...; done < <(find ...)

Readability suffers somewhat.

一向肩并 2024-12-18 11:49:24

我不知道为什么会发生这种情况,但问题是由管道引起的。

如果你这样做

#!/bin/bash                                                                                                                          
    z=0;
    for f in `find $1 -name "*.txt"`
    do
    i=1;
    z=`expr $i + $z`;
    echo "$z";
    done
    echo "$z";

,那么 $z 将不会为零。

I don't know why this happened, but the problem is caused by the pipe.

If you do it like this

#!/bin/bash                                                                                                                          
    z=0;
    for f in `find $1 -name "*.txt"`
    do
    i=1;
    z=`expr $i + $z`;
    echo "$z";
    done
    echo "$z";

then $z will not be zero.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文