From 737cf3c79a03489a53b250cf53cf2a8f53f603a4 Mon Sep 17 00:00:00 2001 From: Harald Pfeiffer Date: Mon, 25 Nov 2019 10:04:43 +0100 Subject: +documentation scripts --- documentation/aux/yum-history | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 documentation/aux/yum-history (limited to 'documentation/aux/yum-history') diff --git a/documentation/aux/yum-history b/documentation/aux/yum-history new file mode 100755 index 0000000..8a8a2a2 --- /dev/null +++ b/documentation/aux/yum-history @@ -0,0 +1,21 @@ +#!/bin/bash + +# we need to use sudo, better fetch the session now so it doesn't feck up our +# nice output later on, tee hee. +sudo echo -n "" +[ "$?" -ne 0 ]&&echo "Not allowed to proceed :("&&exit 1 +SCDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +#SCDIR="$HOME" +source "$SCDIR/ctrl-c"||exit 1 +ODETFIL="$SCDIR/../packages-raw" + +echo -n "Fetching yum history" +true>"$ODETFIL";[ "$?" -ne 0 ]&&echo "failed."&&exit 1||echo -n "." +LCNT=0 +for i in $(sudo yum history list all|grep -vP -- '^--|^ID|^Loaded|^history|leaves'|sed 's/^[\ \t]\+\([0-9]\+\).*/\1/g');do + ((++LCNT)) + [ "$(($LCNT % 3))" -eq 0 ]&&echo -n "."||true + sudo yum history info "$i" 2>>"$ODETFIL"|grep -i Command\ line>>"$ODETFIL" + #[ "$?" -ne 0 ]&&break +done;echo "done." +#[ "$?" -ne 0 ]&&echo "failed."||echo "done." -- cgit v1.2.3