Answers for "linux command to get size in mb"

17

linux list files by size mb

ls -l --block-size=M
Posted by: Guest on May-28-2020
1

size of folder in 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 .
Posted by: Guest on October-21-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language