Subject: Re: Removing old libraries after an upgrade
To: Jared D. McNeill <jmcneill@invisible.yi.org>
From: Eric Haszlakiewicz <erh@nimenees.com>
List: current-users
Date: 03/05/2001 09:57:24
On Mon, Mar 05, 2001 at 11:09:48AM -0400, Jared D. McNeill wrote:
> Is there anyway to write a quick script to get rid of old versions of
> libraries? It's getting rediculous:
Easiest way I could think of:
	cd /tmp
	tar xzvf base.tgz ./usr/lib
	mv /usr/lib /usr/olib
	mv /tmp/usr/lib /usr/lib
	# verify that stuff still works.
	rm -rf /usr/olib

eric