aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorArun Isaac2021-06-19 17:45:55 +0530
committerArun Isaac2021-06-19 17:45:55 +0530
commit94b6704bfd40476487f7e19d653ba9b5ff345857 (patch)
tree7f7f76b244845c6aeebf59c715ea2acc2c6e6373 /doc
parent4b77884224a916c177a7ad95c2d1c82ac39315d9 (diff)
downloadccwl-94b6704bfd40476487f7e19d653ba9b5ff345857.tar.gz
ccwl-94b6704bfd40476487f7e19d653ba9b5ff345857.tar.lz
ccwl-94b6704bfd40476487f7e19d653ba9b5ff345857.zip
doc: Link to source for pipe and tee.
* doc/ccwl.skb (Tutorial)[Workflow with multiple steps]: Link to source for pipe and tee.
Diffstat (limited to 'doc')
-rw-r--r--doc/ccwl.skb12
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/ccwl.skb b/doc/ccwl.skb
index c684caa..cc1f3bf 100644
--- a/doc/ccwl.skb
+++ b/doc/ccwl.skb
@@ -160,8 +160,9 @@ it.])
(scheme-source "doc/decompress-compile-run.scm")
- (p [Notice the ,(code "pipe") form in the body of the
-workflow. The ,(code "pipe") form specifies a list of steps to be
+ (p [Notice the
+,(source-ref "ccwl/ccwl.scm" "\\(\\(pipe" (code "pipe")) form in the body of
+the workflow. The ,(code "pipe") form specifies a list of steps to be
executed sequentially. The workflow inputs coming into ,(code "pipe")
are passed into the first step. Thereafter, the outputs of each step
are passed as inputs into the next. Note that this has nothing to do
@@ -188,9 +189,10 @@ three different checksums of a given input file.])
(scheme-source "doc/checksum.scm")
- (p [Notice the ,(code "tee") form in the body of the
-workflow. The ,(code "tee") form specifies a list of steps that are
-independent of each other. The workflow inputs coming into
+ (p [Notice the
+,(source-ref "ccwl/ccwl.scm" "\\(\\(tee" (code "tee")) form in the
+body of the workflow. The ,(code "tee") form specifies a list of steps
+that are independent of each other. The workflow inputs coming into
,(code "tee") are passed into every step contained in the body of the
,(code "tee"). The outputs of each step are collected together and
unioned as the output of the ,(code "tee").])