for i in $(find . -name *.SlackBuild);do 
  CWD=$(pwd)
  DIR=$(dirname $i)
  SB=$(basename $i)
  cd $DIR
  sh $SB
#  installpkg *.txz
  cd $CWD
done
