Fix if/else scope in yow.c from Rudi
[sxemacs] / lib-src / gzip-el.sh
1 #! /bin/sh
2 ### gzip-el.sh --- compress superfluous installed source lisp
3
4 # Author:       Jeff Miller <jmiller@smart.net>
5 # Author:       Hrvoje Niksic <hniksic@xemacs.org>
6 # Maintainer:   Steve Baur <steve@xemacs.org>
7 # Created:      13 Feb 1997
8 # Version:      1.0
9 # Keywords:     internal
10
11 # This file is part of SXEmacs.
12
13 # SXEmacs is free software: you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation, either version 3 of the License, or
16 # (at your option) any later version.
17
18 # SXEmacs is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22
23 # You should have received a copy of the GNU General Public License
24 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
25
26 #
27 #
28 echo Compressing .el files in "$1"...
29
30 find "$1" -type f -name "*.el" -print |
31         while read file; do
32                 [ -s "${file}c" ] && echo "$file" && gzip -f9 "$file"
33         done
34
35 echo Compressing .el files in "$1"...done.