source: main/tags/2.41/gli/clean.sh@ 25339

Last change on this file since 25339 was 5009, checked in by mdewsnip, 21 years ago

Minor changes to be more consistent with the Windows batch file.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 432 bytes
Line 
1#!/bin/sh
2
3
4## -------- Clean up the Greenstone Librarian Interface directory --------
5
6## ---- Remove class files ----
7echo "Removing the Greenstone Librarian Interface class files..."
8
9cd classes/org/greenstone/gatherer
10rm *.class
11rm -rf cdm
12rm -rf checklist
13rm -rf collection
14rm -rf file
15rm -rf gui
16rm -rf help
17rm -rf mem
18rm -rf msm
19rm -rf sarm
20rm -rf shell
21rm -rf undo
22rm -rf util
23rm -rf valuetree
24cd ../../../..
25
26echo "Done!"
Note: See TracBrowser for help on using the repository browser.