Serveur-motd/source/lxc
2019-02-19 12:13:28 +01:00

7 lines
125 B
Bash
Executable file

#!/bin/bash
if [ -d "/var/lib/lxc" ];then
df -h /var/lib/lxc | awk '{ a = $5} END {print a}';
else
echo "Not Installed";
fi