📜  终端获取文件大小 - Shell-Bash 代码示例

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

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