blob: 5da863b86e6735c692ad7ba2eea7a1e5424339f4 (
plain)
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
|
$NetBSD: patch-ed,v 1.1 2006/10/07 07:57:58 rillig Exp $
--- Tools/faqwiz/move-faqwiz.sh.orig 2002-03-18 09:56:23.000000000 +0100
+++ Tools/faqwiz/move-faqwiz.sh 2006-10-07 09:29:25.000000000 +0200
@@ -9,13 +9,13 @@
# blackjesus:~> ./move-faqwiz.sh 2\.1 3\.2
# Moving FAQ question 02.001 to 03.002
-if [ x$2 == x ]; then
- echo "Need 2 args: original_version final_version."
+if [ $# -ne 2 ]; then
+ echo "Need 2 args: original_version final_version." 1>&2
exit 2
fi
if [ ! -d data -o ! -d data/RCS ]; then
- echo "Run this inside the faqwiz data/ directory's parent dir."
+ echo "Run this inside the faqwiz data/ directory's parent dir." 1>&2
exit 2
fi
@@ -28,7 +28,7 @@ cut_n_pad $1 1 prefix1
cut_n_pad $1 2 suffix1
cut_n_pad $2 1 prefix2
cut_n_pad $2 2 suffix2
-tmpfile=tmp$RANDOM.tmp
+tmpfile=tmp$$.tmp
file1=faq$prefix1.$suffix1.htp
file2=faq$prefix2.$suffix2.htp
|