Answers for "command line size of directory"

7

how to check folder size in linux

# show all folder size in the current directory
du -h --max-depth=1
Posted by: Guest on January-18-2021
8

how to get the size of directory in linux

du -sh /var
Posted by: Guest on June-24-2020
1

command line calculate folder size

du -sh /directory/path
Posted by: Guest on July-07-2020
0

command line size of directory

# The -s flag will insure that each specific entry is calculated, 
# and the -h flag will make the output in human readable size format
du -sh /directory/path
Posted by: Guest on December-02-2020
0

size folder command line

du -h /path/to/folder/
Posted by: Guest on July-20-2020

Code answers related to "command line size of directory"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language