OSDN Git Service

".all"s were deleted.
[eos/tutorial.git] / SampleCode / PIONE / Basic5 / Serial2_combine.pione
1 Rule Main
2         input   '*.in'
3         output  '*.out'
4 Flow
5         rule FirstSecond
6 End
7
8 Rule FirstSecond
9         input   '*.in'
10         output  '{$I[1][1]}.out'
11 Action
12         awk '{ print $1*2 }' {$I[1]} > {$I[1][1]}.route 
13         awk '{ print $1+1 }' {$I[1][1]}.route    > {$O[1]}      
14 End