📜  ls size in mb - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:38.641000             🧑  作者: Mango

代码示例2
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