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