Bash 脚本,从文件读取,增加变量并输出到其他文件
我有一台具有多个 VLAN 的 Debian 服务器。所有 VLAN 都从 1 开始。我需要从文件中读取所有 IP,并将所有这些输出到其他文件中。一切正常,但我遇到了增量变量的问题。 if [ -f /root/ip ]; then for IP_ADD in `grep -v ^# /root/ip`; do eth=1 eth=`expr $eth + 1` cat >> "/root/inter" <<END auto eth0:$eth iface eth0:$eth inet static addres...