4 lines
107 B
Bash
Executable File
4 lines
107 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find /var/lib/docker/volumes/ -maxdepth 1 -type d -name 'rpc_*' -exec du -sh {} \; | sort -rh
|