aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_du.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-07-04 13:46:32 -0700
committerchrislu <chris.lu@gmail.com>2022-07-04 13:46:32 -0700
commita79f5bd0d5ca01d4e53f016f42cb2103f9d7dad1 (patch)
tree6ba0e3dcac670e45dce949ec9d6ad75243ccd7ff /weed/shell/command_fs_du.go
parent3c79c770562ef4f7c0d4e57a88f616eb3671b9cd (diff)
downloadseaweedfs-a79f5bd0d5ca01d4e53f016f42cb2103f9d7dad1.tar.xz
seaweedfs-a79f5bd0d5ca01d4e53f016f42cb2103f9d7dad1.zip
adjust used size reporting
Diffstat (limited to 'weed/shell/command_fs_du.go')
-rw-r--r--weed/shell/command_fs_du.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_fs_du.go b/weed/shell/command_fs_du.go
index 71003714d..919c052d5 100644
--- a/weed/shell/command_fs_du.go
+++ b/weed/shell/command_fs_du.go
@@ -76,7 +76,7 @@ func duTraverseDirectory(writer io.Writer, filerClient filer_pb.FilerClient, dir
}
if name != "" && !entry.IsDirectory {
- fmt.Fprintf(writer, "block:%4d\tbyte:%10d\t%s/%s\n", fileBlockCount, fileByteCount, dir, entry.Name)
+ fmt.Fprintf(writer, "block:%4d\tlogical size:%10d\t%s/%s\n", fileBlockCount, fileByteCount, dir, entry.Name)
}
return nil
})