User:Joerg rw/tools

the text below is intended to c&p to xterm

root
cat >/usr/local/bin/apt-get <<wikiETX
#! /bin/sh
## file /usr/local/bin/apt-get
## due to $PATH will override original apt-get cmd and create
## a file installed-aps.sh in ~root/ which can be sourced to redo
## all the apps installed via `apt-get install <app>`

ag=/usr/bin/apt-get
if [ "$1" = "install" ]; then
  echo '############ logged install ###########'
  $ag $@ && echo result: $? && echo $ag "$@" >>$HOME/installed-aps.sh
else
  $ag $@
fi
wikiETX
chmod a+x /usr/local/bin/apt-get