Answers for "ls size in mb"

15

ls size in mb

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

ls human readable size

du -sh directory_name    #Gives you the summarized(-s) size of the directory in human readable(-h) format
du -bsh *                #Gives you the apparent(-b) summarized(-s) size of all the files and directories in the current directory in human readable(-h) format
Posted by: Guest on July-04-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language