source: main/tags/2.52/gli/clean.sh@ 28875

Last change on this file since 28875 was 8313, checked in by mdewsnip, 20 years ago

Finally committing the (many) changes to the GLI to use the new metadata code... I hope this doesn't have too many bugs in it and committing it now doesn't stuff anyone up! (Katherine said I could commit it, so blame her if anything goes wrong).

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 970 bytes
Line 
1#!/bin/sh
2glilang=en
3
4## -------- Clean up the Greenstone Librarian Interface directory --------
5
6## ---- Remove class files ----
7if [ "$glilang" == "es" ]; then
8 echo "Eliminando los archivos de clase de la Interfaz de la Biblioteca "
9 echo "Digital Greenstone..."
10elif [ "$glilang" == "fr" ]; then
11 echo "Suppression des fichiers de classe de Greenstone Librarian Interface"
12elif [ "$glilang" == "ru" ]; then
13 echo "õÄÁÌÅÎÉÅ ÆÁÊÌÏ× ËÌÁÓÓÁ ÂÉÂÌÉÏÔÅÞÎÏÇÏ ÉÎÔÅÒÆÅÊÓÁ Greenstone"
14else
15 echo "Removing the Greenstone Librarian Interface class files..."
16fi
17
18cd classes/org/greenstone/gatherer
19rm -f *.class
20rm -rf cdm
21rm -rf checklist
22rm -rf collection
23rm -rf feedback
24rm -rf file
25rm -rf gems
26rm -rf gui
27rm -rf help
28rm -rf metadata
29rm -rf shell
30rm -rf util
31cd ../../../..
32
33if [ "$glilang" == "es" ]; then
34 echo "¡Hecho!"
35elif [ "$glilang" == "fr" ]; then
36 echo "Terminé!"
37elif [ "$glilang" == "ru" ]; then
38 echo "÷ÙÐÏÌÎÅÎÏ!"
39else
40 echo "Done!"
41fi
Note: See TracBrowser for help on using the repository browser.