SunOs 中交换信息的正则表达式
交换命令: /usr/sbin/swap -s
我什至尝试过类似 awk '/total/ {print $2}' /usr/sbin/swap -s
但给出我错误
交换输出:
total: 12417784k bytes allocated + 2705800k reserved = 15123584k used, 45459976k available
我需要获取used
一个可用
值,即15123584k
和分别为45459976k
。
swap command : /usr/sbin/swap -s
I even tried something like awk '/total/ {print $2}' /usr/sbin/swap -s
but gives me error
swap output :
total: 12417784k bytes allocated + 2705800k reserved = 15123584k used, 45459976k available
I need to get used
an available
values i.e., 15123584k
and 45459976k
respectively.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用管道将
swap
的输出传递给awk
要获取
15123584k
和45459976k
的值,我们打印使用第 9 列和第 11 列Use a pipe to pass the output of
swap
toawk
To get the value of
15123584k
and45459976k
, we print out column 9 and column 11 using