変数の数値を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