mirror of
https://github.com/YunoHost-Apps/linuxdash_ynh.git
synced 2024-09-03 19:36:07 +02:00
5 lines
216 B
Bash
5 lines
216 B
Bash
|
#!/bin/bash
|
||
|
result=$(/bin/cat /proc/swaps \
|
||
|
| /usr/bin/awk 'NR>1 {print "{ \"filename\": \"" $1"\", \"type\": \""$2"\", \"size\": \""$3"\", \"used\": \""$4"\", \"priority\": \""$5"\"}," }'
|
||
|
)
|
||
|
echo [ ${result%?} ]
|