Skip to content

Instantly share code, notes, and snippets.

@pavelanni
Created May 2, 2025 23:39
Show Gist options
  • Save pavelanni/1ccb6f22a59c3b848c27109193547358 to your computer and use it in GitHub Desktop.
Save pavelanni/1ccb6f22a59c3b848c27109193547358 to your computer and use it in GitHub Desktop.
Stat all buckets in the MinIO alias
#!/bin/bash
ALIAS=play
for b in $(mc ls $ALIAS | sed 's/\/$//' | awk -v alias="$ALIAS" '{print alias"/"$5}') ; do mc stat "${b}" ; echo "---------------\n" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment