在bash脚本中复制变量之间的值

时间:2013-02-26 17:02:43

标签: bash

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

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

我正在尝试这样做:

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

1 个答案:

答案 0 :(得分:18)

说完

countip=$srctip

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

srctip=$countip

根据以下评论,这看起来就像你想要的那样。