How to find the free disk space and used disk space in percentage by using unix? I want that in percentage only.
如何使用unix查找可用磁盘空间和已用磁盘空间百分比?我只想要百分比。
2 个解决方案
#1
At the unix command line
在unix命令行
df -h
lists all the free space of the mounted file systems.
列出已安装文件系统的所有可用空间。
#2
You mean something like: df -h | awk '{print $1 $5}' ?
你的意思是:df -h | awk'{print $ 1 $ 5}'?
#1
At the unix command line
在unix命令行
df -h
lists all the free space of the mounted file systems.
列出已安装文件系统的所有可用空间。
#2
You mean something like: df -h | awk '{print $1 $5}' ?
你的意思是:df -h | awk'{print $ 1 $ 5}'?