如何抑制 aws s3 ls 的文件输出?

如何抑制 aws s3 ls 的文件输出?

我正在使用 aws cli 汇总文件数量和 s3 存储桶的总大小,使用以下命令(文档):

aws s3 ls s3://mybucket --recursive --human-readable --summarize

此命令给出以下输出:

2013-09-02 21:37:53   10 Bytes a.txt
2013-09-02 21:37:53  2.9 MiB foo.zip
2013-09-02 21:32:57   23 Bytes foo/bar/.baz/a
2013-09-02 21:32:58   41 Bytes foo/bar/.baz/b
2013-09-02 21:32:57  281 Bytes foo/bar/.baz/c
2013-09-02 21:32:57   73 Bytes foo/bar/.baz/d
2013-09-02 21:32:57  452 Bytes foo/bar/.baz/e
2013-09-02 21:32:57  896 Bytes foo/bar/.baz/hooks/bar
2013-09-02 21:32:57  189 Bytes foo/bar/.baz/hooks/foo
2013-09-02 21:32:57  398 Bytes z.txt

Total Objects: 10
   Total Size: 2.9 MiB

但是,我只追求Total ObjectsTotal Size输出,例如:

Total Objects: 10
   Total Size: 2.9 MiB

我怎样才能仅显示Total ObjectsTotal Size而抑制/隐藏其余部分?

答案1

要么使用尾巴显示最后几行或grep根据行首的“Total”关键字(可以选择带有额外的空格)过滤输出,例如:

aws s3 ls s3://mybucket --recursive --human-readable --summarize|tail -n2

或者

aws s3 ls s3://mybucket --recursive --human-readable --summarize|grep -e '^\s*Total'

相关内容