gpt4 book ai didi

linux - 在 bash 中匹配单词后的 grep 数字

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:05:20 25 4
gpt4 key购买 nike

我需要获得可用的免费交换并尝试使用 grep

命令 free -m 将其打印为:

              total        used        free      shared  buff/cache   available
Mem: 1823 147 1372 8 302 1485
Swap: 511 0 511

我知道如何获得总掉期:

free -m | grep Swap | grep -oP "Swap:\s+\K\w+"

但无法获得二手和免费。有人可以帮忙吗?

最佳答案

用awk。如果行以字符串 Swap: 开始 (^),打印第四列:

free -m | awk '/^Swap:/ {print $4}'

输出:

511

关于linux - 在 bash 中匹配单词后的 grep 数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42817355/

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