mybin

my ~/bin
git clone https://a3nm.net/git/mybin/
Log | Files | Refs | README

check-packages-study (194B)


      1 #!/bin/bash
      2 
      3 check-packages.sh | cut -f1 | while read l; do 
      4   echo -e "\n\n=== $l ===\n\n";
      5   grep -a --color=always -C50 -i $l ~/.history ~/logs/history*;
      6   apt-cache show $l;
      7 done | less -R
      8