blob: 6a708aa25ce755f5fe063a0153864f203b207368 [file] [log] [blame]
Martin v. Löwis73e61872002-03-18 08:56:23 +00001#!/bin/sh
2#
3# Christian Reis <kiko@async.com.br>
4#
5# Moves
6#
7# Example:
8#
9# blackjesus:~> ./move-faqwiz.sh 2\.1 3\.2
10# Moving FAQ question 02.001 to 03.002
11
12if [ x$2 == x ]; then
13 echo "Need 2 args: original_version final_version."
14 exit 2
15fi
16
17if [ ! -d data -o ! -d data/RCS ]; then
18 echo "Run this inside the faqwiz data/ directory's parent dir."
19 exit 2
20fi
21
22function cut_n_pad() {
23 t=`echo $1 | cut -d. -f $2`
24 export $3=`echo $t | awk "{ tmp = \\$0; l = length(tmp); for (i = 0; i < $2-l+1; i++) { tmp = "0".tmp } print tmp }"`
25}
26
27cut_n_pad $1 1 prefix1
28cut_n_pad $1 2 suffix1
29cut_n_pad $2 1 prefix2
30cut_n_pad $2 2 suffix2
31tmpfile=tmp$RANDOM.tmp
32file1=faq$prefix1.$suffix1.htp
33file2=faq$prefix2.$suffix2.htp
34
35echo "Moving FAQ question $prefix1.$suffix1 to $prefix2.$suffix2"
36
37sed -e "s/$1\./$2\./g" data/$file1 > ${tmpfile}1
38sed -e "s/$1\./$2\./g" data/RCS/$file1,v > ${tmpfile}2
39
40if [ -f data/$file2 ]; then
41 echo "Target FAQ exists. Won't clobber."
42 exit 2
43fi
44
45mv ${tmpfile}1 data/$file2
46mv ${tmpfile}2 data/RCS/$file2,v
47mv data/$file1 data/$file1.orig
48mv data/RCS/$file1,v data/RCS/$file1,v.orig
49