get file size terminal code example
Example 1: list file size as mb
ls -l --block-size=M
Example 2: linux command for file size
#Get file size of each folder
du -bsh *
Example 3: terminal size of file
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
Example 4: terminal get size of file
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