如何将变量中的数值复制到 bash 脚本中的另一个变量。如果这是C,我会做
int a=0;
int b;
a=b;
我正在尝试这样做:
if [ $countip -gt $totalip ];
then
$countip -eq $srctip # <-- My problem is here!
echo $srctip
fi
如何将变量中的数值复制到 bash 脚本中的另一个变量。如果这是C,我会做
int a=0;
int b;
a=b;
我正在尝试这样做:
if [ $countip -gt $totalip ];
then
$countip -eq $srctip # <-- My problem is here!
echo $srctip
fi