Last active
November 23, 2025 16:35
-
-
Save dkapitan/77aaf574ac60df6189710af72517c3a8 to your computer and use it in GitHub Desktop.
just handy utilities
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| show-project-size: | |
| uv pip list --format freeze | \ | |
| awk -F = {'print $1'} | \ | |
| xargs uv pip show | \ | |
| grep -E 'Location:|Name:' | \ | |
| cut -d ' ' -f 2 | \ | |
| paste -d ' ' - - | \ | |
| awk '{print $2 "/" tolower($1)}' | \ | |
| xargs du -sh 2> /dev/null | \ | |
| sort -hr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment