#!/bin/bash oover=1.1.3 oodir=/usr/share/openoffice.org oofile=OOo_${oover}_LinuxIntel_install echo echo "Installing OpenOffice.org $oover.." echo rm -rf $HOME/$oofile tar -zxf $oodir/$oofile.tar.gz --directory=$HOME cd $HOME/$oofile ./install --single rm -rf $HOME/$oofile echo echo "You may launch OpenOffice.org $oover from GNOME/Office menu." echo