使用 ifconfig 输出关闭 ifconfig

使用 ifconfig 输出关闭 ifconfig

在 RH 6.7 上,使用bash

我需要使用脚本释放一些 IP 地址。

我正在寻找一种使用命令关闭绑定的方法ifconfig xxx down

我用这个搜索候选人列表:

$ ifconfig |grep ^bond[0-9]:[1-9] |awk '{print $1}'

我如何轻松地使用该命令的输出到该down命令?

xargs不适合我:

$ ifconfig |grep ^bond[0-9]:[1-9] |awk '{print \$1}' | xargs -n 1 ifconfig  down

谢谢

答案1

找到了一个不错的选择:

for i in `ifconfig |grep ^bond[0-9]:[1-9] |awk '{print $1}'` ;   do 
  ifconfig $i down;
done

相关内容