1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
|
#! /bin/sh
### Sanitize -- remove the unclean bits from a distribution or a file
### (perhaps this should be called an Exorcist?)
###
### See the file Sanitize.texi for whatever sort of documentation this
### program has.
###
### Usage: Sanitize [keep-cvs] [keep-sanitize] [test] [recover] [verbose] [-n] ...
### Note that the highest level Sanitize command-line may have arbitrary
### other options, which have meaning only within some `Do-first' or
### `Do-last' script fragment.
###
### The -n option, like make's -n option, simply shows you what the
### script *would have* done, given the other parameters you've passed
### to it. No actions are taken except traversal of the directory tree.
###
### written by K. Richard Pixley, hacked by david d `zoo' zuhn
### -n option, lots of comments added by Bill Cox
###
SHELL=/bin/sh ; export SHELL
## We have three cases:
## The path given was absolute
## action: just keep it
## The name had a relative path
## action: make it absolute.
## The name had no directory components and was path searched
## action: just keep it, since the path search will *still* work
case $0 in
/*) sanprog=$0 ;;
*/*)
sanprog=$0
sandir=`dirname $sanprog`
sandir=`(cd $sandir; pwd)`
sanprog=$sandir/`basename $sanprog`
;;
*) sanprog=$0 ;;
esac
### "debugger"
#set -x
### Some variables and temp files; remove on any exit.
workdir=/tmp
cleaned=${workdir}/$$San.clean
keepers=${workdir}/$$San.keep
losers=${workdir}/$$San.lose
sandd=${workdir}/$$San.temp
sanStatus=1
trap 'rm -f ${cleaned} ${keepers} ${sandd} ${losers} ; exit $sanStatus' 0
### Make sure there is a .Sanitize
if [ ! -f .Sanitize ] ; then
echo '***' No .Sanitize file in `pwd`! 1>&2
exit 1
else
true
fi
### check for optional things-to-lose section first
if ( egrep '^Things-to-lose:$' < .Sanitize > /dev/null ) ; then
losingthings=true
else
losingthings=
fi
### Check that all trigger lines exist and are in order.
if [ -n "${losingthings}" ] ; then
egrep '^Do-first:$|^Things-to-keep:$|^Things-to-lose:|^Do-last:$' < .Sanitize > ${sandd}
diff ${sandd} - <<EOF
Do-first:
Things-to-keep:
Things-to-lose:
Do-last:
EOF
else
egrep '^Do-first:$|^Things-to-keep:$|^Do-last:$' < .Sanitize > ${sandd}
diff ${sandd} - <<EOF
Do-first:
Things-to-keep:
Do-last:
EOF
fi
if [ "$?" != "0" ] ; then
echo '***' ${sanprog}: Some required trigger lines are missing 1>&2
echo '***' or out-of-order in `pwd`/.Sanitize 1>&2
exit 1
else
true
fi
### die on errors
set -e
### set verbose
if ( echo $* | egrep verbose > /dev/null ) ; then
verbose=true
else
verbose=
fi
### set no_action flag if '-n' set
### The echo ... egrep sequence didn't work
### with the leading hyphen.
no_action=
for opt in $*
do
case $opt in
-n)
no_action=true
;;
*)
;;
esac
done
### cache current directory name.
THISDIR=`pwd`
### Remove comments & blank lines.
egrep -v "^#" < .Sanitize | sed -e '/^$/d' > ${cleaned}
### Do-first stuff.
### Note that the parameters to Sanitize are also passed
### to the fragment. The fragment may optionally set the
### variables `keep_these_too' and `lose_these_too'.
sed -e '/^Things\-to\-keep:$/,$d' -e '1d' ${cleaned} > ${sandd}
if [ -s ${sandd} ] ; then
if [ -n "${no_action}" ] ; then
echo ". ${sandd} $*"
else
. ${sandd} $*
fi
else
if [ -n "${verbose}" ] ; then
echo "No \`Do-first' fragment to execute."
else
true
fi
fi
### Things-to-keep:
### Just build the list of keepers for now.
sed -e '1,/^Things\-to\-keep:$/d' ${cleaned} > ${sandd}
if [ -n "${losingthings}" ] ; then
sed -e '/^Things\-to\-lose:$/,$d' ${sandd} > ${keepers}
else
sed -e '/^Do-last:$/,$d' ${sandd} > ${keepers}
fi
if [ -n "${keep_these_too}" ] ; then
for i in ${keep_these_too} ; do
if [ -n "${verbose}" ] ; then
echo Keeping $i
else
true
fi
echo $i >> ${keepers}
done
else
true
fi
### Things-to-lose:
### Just build the list of losers for now.
if [ -n "${losingthings}" ] ; then
sed -e '1,/^Things\-to\-lose:$/d' \
-e '/^Do\-last:$/,$d' ${cleaned} \
> ${losers}
else
cat /dev/null > ${losers}
fi
if [ -n "${lose_these_too}" ] ; then
for i in ${lose_these_too} ; do
if [ -n "${verbose}" ] ; then
echo Losing $i
else
true
fi
echo $i >> ${losers}
done
else
true
fi
### catch and handle "recover"
if ( echo $* | egrep recover > /dev/null ) ; then
if [ -d .Recover ] ; then
cd .Recover
replace=`ls -a | egrep -v '^\.$|^\.\.$'`
if [ -n "${no_action}" ] ; then
echo "cd .Recover"
echo "mv ${replace} .."
echo "cd .."
cd .. # Must also do this for real..
echo "rmdir .Recover"
else
if [ -n "${verbose}" ] ; then
echo Replacing ${replace}
fi
mv ${replace} ..
cd ..
rmdir .Recover
fi
else
true
fi
for i in `egrep -v CVS ${keepers} | egrep -v \\.Recover` ; do
if [ -d "$i" ] ; then
if [ -n "${no_action}" ] ; then
echo "cd $i"
else
if [ -n "${verbose}" ] ; then
echo Running ${sanprog} on ${THISDIR}/$i
else
true
fi
fi
(cd $i ; ${sanprog} $*) | sed 's/^/ /'
else
true
fi
done
sanStatus=0
exit 0
else
### catch and handle "test"
if ( echo $* | egrep test > /dev/null ) ; then
echo CVS >> ${keepers}
echo .Sanitize >> ${keepers}
echo .Recover >> ${keepers}
# echo .cvsignore >> ${keepers}
if [ -n "${no_action}" ] ; then
echo "mkdir .Recover"
else
if [ -n "${verbose}" ] ; then
echo Keeping CVS, .Sanitize, .cvsignore, and .Recover
echo Creating ${THISDIR}/.Recover to hold unclean files...
else
true
fi
mkdir .Recover
fi
safe=safe
else
### if not testing, then lose .Sanitize.
if [ -n "${verbose}" ] ; then
echo Losing .Sanitize
else
true
fi
echo .Sanitize >> ${losers}
### catch and handle "keep-cvs"
if ( echo $* | egrep keep-cvs > /dev/null ) ; then
if [ -n "${verbose}" ] ; then
echo Keeping CVS #, .cvsignore
else
true
fi
echo CVS >> ${keepers}
# echo .cvsignore >> ${keepers}
else
if [ -n "${verbose}" ] ; then
echo Losing CVS #, .cvsignore
else
true
fi
echo CVS >> ${losers}
# echo .cvsignore >> ${losers}
fi
fi
fi
### otherwise move files away
### Issue errors for explicit losers which don't exist.
tolose=`sed -e 's/[ ]*$//' ${losers}`
if [ -n "${tolose}" ] ; then
for i in ${tolose} ; do
if [ -f $i -o -d $i ]; then
if [ -n "${safe}" ] ; then
if [ -n "${no_action}" ] ; then
echo "mv $i .Recover"
else
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
else
true
fi
mv $i .Recover
fi
else
if [ -n "${no_action}" ] ; then
echo "rm -rf $i"
else
if [ -n "${verbose}" ] ; then
echo Removing ${THISDIR}/$i
else
true
fi
rm -rf $i
fi
fi
else
echo '***' "Can't" remove expected file/directory ${THISDIR}/$i - not found. 1>&2
fi
done
else
true
fi
### lose everything else in the directory,
### except the explicit keepers.
tolose=`(ls -a | egrep -v '^\.$|^\.\.$' ; \
sed -e 's/[ ]*$//' ${keepers}) | sort | uniq -u`
# $tolose is a list of files from ${keepers} or in directory but not both
if [ -n "${tolose}" ] ; then
for i in ${tolose} ; do
if [ -f $i -o -d $i ]; then
# is in directory and not in ${keepers}
if [ -n "${safe}" ] ; then
if [ -n "${no_action}" ] ; then
echo "mv $i .Recover"
else
echo '***' Caching unexpected file ${THISDIR}/$i in .Recover... 1>&2
mv $i .Recover
fi
else
if [ -n "${no_action}" ] ; then
echo "rm -rf $i"
else
echo '***' Removing unexpected file ${THISDIR}/$i 1>&2
rm -rf $i
fi
fi
else
# is in ${keepers} but not in directory
echo '***' "Can't" keep expected file ${THISDIR}/$i - not found. 1>&2
fi
done
else
true
fi
### Recurse into any subdirectories flagged as keepers.
### Do the same good deeds down there.
for i in `egrep -v CVS ${keepers} | egrep -v \\.Recover` ; do
if [ -d $i ] ; then
if [ -n "${no_action}" ] ; then
echo "cd $i"
else
if [ -n "${verbose}" ] ; then
echo Running ${sanprog} on ${THISDIR}/$i
else
true
fi
fi
(cd $i ; ${sanprog} $*) | sed 's/^/ /'
else
true
fi
done
### Do-last:
sed -e '1,/^Do\-last:$/d' ${cleaned} > ${sandd}
if [ -s ${sandd} ] ; then
if [ -n "${no_action}" ] ; then
echo ". ${sandd} $*"
else
. ${sandd} $*
fi
else
if [ -n "${verbose}" ] ; then
echo "No \`Do-last' fragment to execute."
else
true
fi
fi
### cleanup
if ( echo $* | egrep test > /dev/null ) ; then
if [ -n "${safe}" -a "`cd .Recover ; (echo empty ; ls -a) | \
egrep -v '^\.$|^\.\.$'`" = "empty" ] ; then
if [ -n "${no_action}" ] ; then
echo "rmdir .Recover"
else
if [ -n "${verbose}" ] ; then
echo Removing .Recover. It was not needed.
else
true
fi
rmdir .Recover
fi
fi
fi
sanStatus=0
### eof.
|