summaryrefslogtreecommitdiff
path: root/Documentation/en/I-D/.update.sh
blob: bf88d7b5401407ae516aa1dab97620a6f1cbb931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
# $FML: .update.sh,v 1.1 2001/11/17 11:36:45 fukachan Exp $
#

chmod 644 draft-*

apply echo draft-*txt | sed 's@\-[0-9][0-9].txt@@' | while read file
do
   for x in $HOME/.I-D/${file}*.txt $HOME/.I-D/${file}*.txt.gz
   do
	if [ -f $x ]; then
		echo cp $x .
		eval cp $x .
	fi
   done 
done

exit 0