tags:

views:

619

answers:

2

How to find the free disk space and used disk space in percentage by using unix? I want that in percentage only.

+1  A: 

At the unix command line

df -h

lists all the free space of the mounted file systems.

RobS
+3  A: 

You mean something like: df -h | awk '{print $1 $5}' ?

Moshe