source: trunk/gli/RemoveBackups@ 4620

Last change on this file since 4620 was 4293, checked in by jmt12, 21 years ago

Initial revision

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 743 bytes
Line 
1#!/bin/sh
2echo "* Removing emacs backup files. (*~)"
3rm *~
4pushd src/
5pushd org/greenstone/gatherer/
6rm *~
7pushd cdm/
8rm *~
9pushd custom/
10rm *~
11popd
12popd
13pushd checklist/
14rm *~
15popd
16pushd collection/
17rm *~
18popd
19pushd file/
20rm *~
21popd
22pushd gui/
23rm *~
24pushd browser/
25rm *~
26popd
27pushd combobox/
28rm *~
29popd
30pushd messages/
31rm *~
32popd
33pushd metaaudit/
34rm *~
35popd
36pushd table/
37rm *~
38popd
39pushd tree/
40rm *~
41popd
42popd
43pushd help/
44rm *~
45popd
46pushd mem/
47rm *~
48popd
49pushd msm/
50rm *~
51pushd parsers/
52rm *~
53popd
54popd
55pushd sarm/
56rm *~
57popd
58pushd shell/
59rm *~
60popd
61pushd undo/
62rm *~
63popd
64pushd util/
65rm *~
66popd
67pushd valuetree/
68rm *~
69popd
70popd
71popd
72echo "* Removing misc files."
73rm -r gatherer.cfg
74rm -r *.log
75rm -r debug*.txt
76rm -r output.txt
77echo "Done."
Note: See TracBrowser for help on using the repository browser.