1 #!/bin/sh
2 source /etc/profile
3 source ~/.bash_profile
4 # 指定要统计的网络接口名称enp2s0
5 current_time=$(date +%Y-%m-%d:%H:%M:%S)
6 rx_bytes=$(cat /proc/net/dev |grep -E "^enp2s0:"|awk '{print $2}') # 过滤输出网卡enp2s0右侧的内容
7 tx_bytes=$(cat /proc/net/dev |grep -E "^enp2s0:"|awk '{print $10}')
8
shell脚本来记录某个网卡每天的流量和数据包
于 2024-03-06 10:19:30 首次发布