Input file(s):
a Definition: ${A}
c Definition: ${C}
Output file(s):
d Definition: ${D}
NOTE: Use '-H' option to see all variables for procedure 'foo'.
3. Here, "${C}" is wrongly treated as input rather than output or intermediate
file.
**What is the expected output? What do you see instead?**
It is expected that "${C}" is not input of the whole pipeline.
Original issue reported on code.google.com by yanlinlin82 on 18 Jun 2013 at 2:28
$ cat foo.pipe function foo {
[input="${A}" output="${B}"]
}
$ seqpipe -m foo.pipe foo -h A=a B=b C=c D=d
Input file(s): a Definition: ${A} c Definition: ${C}
Output file(s): d Definition: ${D}
NOTE: Use '-H' option to see all variables for procedure 'foo'.
Original issue reported on code.google.com by
yanlinlin82
on 18 Jun 2013 at 2:28