diff options
| author | chrislu <chris.lu@gmail.com> | 2022-07-04 13:47:42 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-07-04 13:47:42 -0700 |
| commit | 57975b93ff463e71b20aed8feb1e669ee0f72780 (patch) | |
| tree | 65555c2a4ee2fa8f64568963dd7d6ea432a29c85 /weed/shell/command_fs_du.go | |
| parent | a79f5bd0d5ca01d4e53f016f42cb2103f9d7dad1 (diff) | |
| download | seaweedfs-57975b93ff463e71b20aed8feb1e669ee0f72780.tar.xz seaweedfs-57975b93ff463e71b20aed8feb1e669ee0f72780.zip | |
adjust used size reporting
Diffstat (limited to 'weed/shell/command_fs_du.go')
| -rw-r--r-- | weed/shell/command_fs_du.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_fs_du.go b/weed/shell/command_fs_du.go index 919c052d5..a9d704f37 100644 --- a/weed/shell/command_fs_du.go +++ b/weed/shell/command_fs_du.go @@ -45,7 +45,7 @@ func (c *commandFsDu) Do(args []string, commandEnv *CommandEnv, writer io.Writer blockCount, byteCount, err = duTraverseDirectory(writer, commandEnv, dir, name) if name == "" && err == nil { - fmt.Fprintf(writer, "block:%4d\tbyte:%10d\t%s\n", blockCount, byteCount, dir) + fmt.Fprintf(writer, "block:%4d\tlogical size:%10d\t%s\n", blockCount, byteCount, dir) } return |
