From c77879a0aaf888ad62b0cbe6d786f5bb80f32b05 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Fri, 25 Aug 2023 06:21:57 +0200 Subject: [PATCH] show dat handy tool --- show-db-size.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 show-db-size.sh diff --git a/show-db-size.sh b/show-db-size.sh new file mode 100755 index 00000000..34749e74 --- /dev/null +++ b/show-db-size.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +find /var/lib/docker/volumes/ -maxdepth 1 -type d -name 'rpc_*' -exec du -sh {} \; | sort -rh