一尘不染

在ls -l之后的第一行中的“总计”是多少?

linux

什么是total在输出ls -l

    $ ls -l /etc
    total 3344
    -rw-r--r--   1 root root   15276 Oct  5  2004 a2ps.cfg
    -rw-r--r--   1 root root    2562 Oct  5  2004 a2ps-site.cfg
    drwxr-xr-x   4 root root    4096 Feb  2  2007 acpi
    -rw-r--r--   1 root root      48 Feb  8  2008 adjtime
    drwxr-xr-x   4 root root    4096 Feb  2  2007 alchemist

阅读 257

收藏
2020-06-02

共1个答案

一尘不染

您可以在ls平台的文档中找到该行的定义。对于coreutils ls(在许多Linux系统上可以找到的那个),可以通过info coreutils ls以下信息找到该信息:

对于列出的每个目录,在文件前添加“ total BLOCKS”行,其中BLOCKS是该目录中所有文件的总磁盘分配。

2020-06-02