mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
5 lines
161 B
Bash
5 lines
161 B
Bash
|
#!/bin/bash
|
||
|
/bin/cat /proc/meminfo \
|
||
|
| /usr/bin/awk -F: 'BEGIN {print "{"} {print "\"" $1 "\": \"" $2 "\"," } END {print "}"}' \
|
||
|
| /bin/sed 'N;$s/,\n/\n/;P;D'
|