作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 du 命令,但我不确定如何按文件大小进行过滤。尝试执行此操作以删除我根本不需要的大文件并且会浪费我的钱。
最佳答案
GSutil 提供了一些方法来对存储桶中的对象进行排序,但不是按文件大小;您可以混合使用 linux/gsutil 命令来帮助您。例如,这个:
List objects sorted by size descending with human redible sizes:
gsutil ls -lh gs://{bucket} | sort -n -k 1
稍微打破命令:
gsutil ls: List providers, buckets, or objects
-l: Prints long listing (owner, length)
h: When used with -l, prints object sizes in human readable format
In case you need to do it recursively, add
-r
-n: To sort a file numerically
-k 1: to sort on a certain column. For example, use
-k 2
to sort on the second column
关于google-cloud-platform - 有没有办法找到大于特定大小的 Google Cloud Storage Bucket 中的所有文件/对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66427813/
我是一名优秀的程序员,十分优秀!