relpipe-data/examples-guile-filtering.xml
branchv_0
changeset 258 2868d772c27e
parent 245 4919c8098008
child 316 d7ae02390fac
equal deleted inserted replaced
257:a39066264509 258:2868d772c27e
    25 		
    25 		
    26 		<p>
    26 		<p>
    27 			We are looking for „satanistic“ icons in our filesystem – those that have size = 666 bytes.
    27 			We are looking for „satanistic“ icons in our filesystem – those that have size = 666 bytes.
    28 		</p>
    28 		</p>
    29 		
    29 		
    30 		<m:pre jazyk="bash"><![CDATA[$ find /usr/share/icons/ -type f -print0 \
    30 		<m:pre jazyk="bash"><![CDATA[find /usr/share/icons/ -type f -print0 \
    31 	| relpipe-in-filesystem \
    31 	| relpipe-in-filesystem \
    32 	| relpipe-tr-guile --relation 'files.*' --where '(= $size 666)' \
    32 	| relpipe-tr-guile --relation 'files.*' --where '(= $size 666)' \
    33 	| relpipe-out-tabular]]></m:pre>
    33 	| relpipe-out-tabular]]></m:pre>
    34 	
    34 	
    35 		<p>Well, well… here we are:</p>
    35 		<p>Well, well… here we are:</p>