Horje
get the size of files in a directory 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
command to check size of folder in linux
du -lh --max-depth=1 --block-size=M | sort -nr
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
create remore git branch Code Example create remore git branch Code Example
internet speed test terminal Code Example internet speed test terminal Code Example
git update branch list Code Example git update branch list Code Example
process runninng on particular port Code Example process runninng on particular port Code Example
install blender on Debian Linux Code Example install blender on Debian Linux Code Example

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