如何将变量中的数值复制到bash脚本中的另一个变量。如果这是C,我会的
int a=0;
int b;
a=b;
我正在尝试:
if [ $countip -gt $totalip ];
then
$countip -eq $srctip # <-- My problem is here!
echo $srctip
fi
最佳答案
就说吧
countip=$srctip
这就是作业在bash中的工作方式。这将把countip设置为srctip的值。如果你
想分配srctip然后只写
srctip=$countip
根据下面的评论,这看起来像是你想要的。
关于bash - 在bash脚本中的变量之间复制值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15094968/