gpt4 book ai didi

linux - 如何拆分多格式行

转载 作者:太空狗 更新时间:2023-10-29 12:01:45 24 4
gpt4 key购买 nike

我在拆分多格式行时遇到问题。我想通过命令 route -n 获取所有网关。我所知道的是使用 cut,但它不起作用。

假设我的 route -n 显示以下消息:

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0 192.168.12.2 0.0.0.0 UG 0 0 0 eth0
0.0.0.0 192.168.12.1 0.0.0.0 UG 1024 0 0 eth0

我想获取:192.168.12.2192.168.12.1

最佳答案

route -n | awk 'FNR > 1 {print $2}'

输出:

192.168.12.2192.168.12.1

关于linux - 如何拆分多格式行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32795717/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com