You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
pip list \
|
|
| tail -n +3 \
|
|
| awk '{print $1}' \
|
|
| xargs 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
|