Date: Sun, 17 Nov 1996 10:04:58 +0200 (IST) From: Eli Zaretskii To: Martin Bernreuther Cc: djgpp AT delorie DOT com, Mark Habersack , "John M. Aldrich" Subject: Re: Uninstalling components In-Reply-To: <328C603C.EB@po.uni-stuttgart.de> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Fri, 15 Nov 1996, Martin Bernreuther wrote: > It's a nice that most of the djgpp components have an entry in the manifest > directory *.mft where all installed files are listed. > > Is there a utility programm to uninstall a component and to remove these > files automatically? You don't need a utility to do that, that's what those manifest files are all about. Using them, any DJGPP-compiled program that deletes files given on the command line will do. For example, use `rm' from GNU Fileutils like this: rm -rvf @manifest/fil313b.mft This will delete all the files which come with fil313b.zip. Neat, eh?