379bcb3286d7ef112a0b31262ba8eb3847b9797f
[khatus.git] / bin / khatus_sensor_disk_io
1 #! /bin/sh
2
3 set -e
4
5 disk_io_device="$1"
6
7 awk '
8 {
9 r = $3
10 w = $7
11 print w, r
12 }
13 ' \
14 "/sys/block/$disk_io_device/stat"
This page took 0.049895 seconds and 3 git commands to generate.