问题描述
- vmstat n 管道至 curl
- 使用 vmstat n命令每间隔n秒不间断的输出系统状态.
而目前想把每次输出状态立即通过curl POST到一个url上.
是否可以通过管道完成?
解决方案
You can use the -d option in curl with a @- argument to accept input from a pipe.
http://serverfault.com/questions/313599/how-do-i-pipe-the-output-of-uptime-df-to-curl
时间: 2024-09-20 00:23:10