Horje
find the size of file in linux 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
find the size of file in linux
ls -l filename   #Displays Size of the specified file
ls -l *          #Displays Size of All the files in the current directory
ls -al *         #Displays Size of All the files including hidden files in the current directory
ls -al dir/      #Displays Size of All the files including hidden files in the 'dir' directory




Shell

Related
bash cd or make dir if not exists Code Example bash cd or make dir if not exists Code Example
ls human readable size Code Example ls human readable size Code Example
scp HostKeyVerification=false Code Example scp HostKeyVerification=false Code Example
git configure upstream Code Example git configure upstream Code Example
update snapshot jest Code Example update snapshot jest Code Example

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