How to find the free disk space and used disk space in percentage by using unix? I want that in percentage only.
At the unix command line
df -h
lists all the free space of the mounted file systems.
You mean something like: df -h | awk '{print $1 $5}' ?