24

如何将变量中的数值复制到 bash 脚本中的另一个变量。如果这是C,我会做

int a=0;
int b;
a=b;

我正在尝试这样做:

if [ $countip -gt $totalip ]; 
then
    $countip -eq $srctip # <-- My problem is here!
    echo $srctip
fi
4

1 回答 1

32

说啊

countip=$srctip

这就是赋值在 bash 中的工作方式。这会将 countip 设置为 srctip 的值。如果你想分配 srctip 然后写

srctip=$countip

根据下面的评论,这看起来像你想要的。

于 2013-02-26T17:10:32.743 回答