微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

linux – 管道命令的Echo输出

我试图在我的bash脚本代码中回显一个命令.

OVERRUN_ERRORS="$ifconfig | egrep -i "RX errors" | awk '{print $7}'"
echo ${OVERRUN_ERRORS}

但是它给了我一个错误,$7没有显示在命令中.我必须将它存储在变量中,因为我将在稍后的时间点处理输出(OVERRUN_ERRORS).这样做的正确语法是什么?谢谢.

解决方法:

关于Bash语法

foo="bar | baz"

…将字符串“bar | baz”赋给名为foo的变量;它没有运行吧|巴兹作为管道.为此,您希望以现代$()语法或过时的基于反引号的形式使用command substitution

foo="$(bar | baz)"

关于存储以后执行代码

由于你的意图在问题中不明确 –

存储代码的正确方法是使用函数,而存储输出的正确方法是使用字符串:

# store code in a function; this also works with pipelines
get_rx_errors() { cat /sys/class/net/"$1"/statistics/rx_errors; }

# store result of calling that function in a string
eth0_errors="$(get_rx_errors eth0)"

sleep 1 # wait a second for demonstration purposes, then...

# compare: echoing the stored value, vs calculating a new value
echo "One second ago, the number of rx errors was ${eth0_errors}"
etho "Right Now, it is $(get_rx_errors eth0)"

有关在字符串中存储代码的缺陷以及相同的替代方法的扩展讨论,请参阅BashFAQ #50.同样相关的是BashFAQ #48,其详细描述了与eval相关联的安全风险,其通常被建议作为变通方法.

关于收集接口误差计数

根本不要使用ifconfig,grep或awk – 只需向内核询问您想要的数字:

#!/bin/bash
for device in /sys/class/net/*; do
  [[ -e $device/statistics/rx_errors ]] || continue
  rx_errors=$(<"${device}/statistics/rx_errors")
  echo "Number of rx_errors for ${device##*/} is $rx_errors"
done

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐