Horje
linux size of files Code Example
get the size of files in a directory linux
# Displays all the files and sizes in MB or GB
du -h --max-depth=1
Source: linuxize.com
linux file size
cd dir ; du -hsx * | sort -rh | head -20 
# example output
# 300MB    some_backup_file.log
# 1.8GB    some_huge_file.war
linux size of files
du -sh *
linux size of files
du -sh *

https://stackoverflow.com/questions/1019116/using-ls-to-list-directories-and-their-total-sizes




Shell

Related
bash date today plus one day Code Example bash date today plus one day Code Example
ImportError: libGL.so.1: cannot open shared object file: No such file or directory Code Example ImportError: libGL.so.1: cannot open shared object file: No such file or directory Code Example
libGL.so.1: cannot open shared object file: No such file or directory Code Example libGL.so.1: cannot open shared object file: No such file or directory Code Example
fatal unable to create '.git/index.lock' file exists Code Example fatal unable to create '.git/index.lock' file exists Code Example
credential git ubuntu Code Example credential git ubuntu Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12