commit 2b3b06146b26990846f2585f90d66c8710f22267 parent e5983a96e173a678f768cef6d35351aa25dc9684 Author: Antoine Amarilli <a3nm@a3nm.net> Date: Mon, 4 Apr 2016 00:58:40 +0200 +check-packages-study Diffstat:
check-packages-study | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/check-packages-study b/check-packages-study @@ -0,0 +1,8 @@ +#!/bin/bash + +check-packages.sh | cut -f1 | while read l; do + echo "\n\n=== $l ===\n\n"; + grep -a --color=always -C50 -i $l ~/.history ~/logs/history*; + apt-cache show $l; +done | less -R +