mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
6 lines
211 B
Bash
Executable file
6 lines
211 B
Bash
Executable file
#!/bin/bash
|
|
/bin/cat /proc/net/dev \
|
|
| awk 'BEGIN {print "["} NR>2 {print "{ \"interface\": \"" $1 "\"," \
|
|
" \"tx\": " $2 "," \
|
|
" \"rx\": " $10 " }," } END {print "]"}' \
|
|
| /bin/sed 'N;$s/,\n/\n/;P;D'
|