“Размер папки в MB Linux” Ответ

Размер папки в MB Linux

# Just use the du command:
du -sh -- *

# will give you the cumulative disk usage of all non-hidden directories,
# files etc in the current directory in human-readable format.

# You can use the df command to know the free space in the filesystem 
# containing the directory:
df -h .
Merwanski

Показать размер каталога Linux

du -sh /home/george
2.1G    /home/george
Excited Elk

Ответы похожие на “Размер папки в MB Linux”

Вопросы похожие на “Размер папки в MB Linux”

Больше похожих ответов на “Размер папки в MB Linux” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования