blob: 6b7aeb13db6549c8cbaed975162165348d411db6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- pw/pw.scm Sat Feb 5 13:16:43 2000
+++ pw/pw.scm Fri Feb 25 11:46:39 2000
@@ -539,2 +539,2 @@
- "*.txt" "catdoc %s > %s"
- "*.rtf" "cp %s %s"))
+ "*.txt" "exec catdoc '%s' > '%s'"
+ "*.rtf" "exec cp '%s' '%s'"))
@@ -543,2 +543,2 @@
- "*.txt" "blaha < %s > %s"
- "*.txt" "blaha < %s > %s"))
+ "*.txt" "exec blaha < '%s' > '%s'"
+ "*.txt" "exec blaha < '%s' > '%s'"))
@@ -547,2 +547,2 @@
- "*.html" "mswordview -n %s -o %s"
- "*.rtf" "cp %s %s"))
+ "*.html" "exec mswordview -n '%s' -o '%s'"
+ "*.rtf" "exec cp '%s' '%s'"))
@@ -551 +551 @@
- "*.txt" "groff -Tascii -mandoc %s > %s"
+ "*.txt" "exec groff -Tascii -mandoc '%s' > '%s'"
@@ -555 +555 @@
- "*.rtf" "2rtf %s %s"
+ "*.rtf" "exec 2rtf '%s' '%s'"
|