mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
7 lines
221 B
Bash
7 lines
221 B
Bash
|
#!/bin/bash
|
||
|
echo "stats" \
|
||
|
| /bin/nc -w 1 127.0.0.1 11211 \
|
||
|
| /bin/grep 'bytes' \
|
||
|
| /usr/bin/awk 'BEGIN {print "{"} {print "\"" $2 "\": " $3 } END {print "}"}' \
|
||
|
| /usr/bin/tr '\r' ',' \
|
||
|
| /bin/sed 'N;$s/,\n/\n/;P;D'
|