thib1984
Results
2
comments of
thib1984
Hi, For example, you can use : ``` pip list --format=columns | tail -n +3| cut -d" " -f1 | xargs -n1 pip show | grep -E 'Name|Summary' ``` in...
Other command, you can change the last word to search other string in "man packages" ``` while read -r ligne;do;pip show $ligne | grep -E "^Name|^Summary" | sed ':a;N;$!ba;s/\n/ /g'...