examples: small sed fix: .* → .+ v_0
authorFrantišek Kučera <franta-hg@frantovo.cz>
Fri, 21 Dec 2018 12:19:17 +0100
branchv_0
changeset 223 6402cd6921c5
parent 222 a02847f786d9
child 224 9ea7e5c65107
examples: small sed fix: .* → .+
relpipe-data/examples.xml
--- a/relpipe-data/examples.xml	Fri Dec 21 12:18:43 2018 +0100
+++ b/relpipe-data/examples.xml	Fri Dec 21 12:19:17 2018 +0100
@@ -455,7 +455,7 @@
 			For example we can put zeroes in both <code>dump</code> and <code>pass</code> attributes:
 		</p>
 		
-		<m:pre jazyk="bash"><![CDATA[relpipe-in-fstab | relpipe-tr-sed 'fstab' 'dump|pass' '.*' '0' | relpipe-out-fstab]]></m:pre>
+		<m:pre jazyk="bash"><![CDATA[relpipe-in-fstab | relpipe-tr-sed 'fstab' 'dump|pass' '.+' '0' | relpipe-out-fstab]]></m:pre>
 		
 		<p>
 			n.b. the data types must be respected, we can not e.g. put <code>abc</code> in the <code>pass</code> attribute because it is declared as <code>integer</code>.