OSDN Git Service

Add: PIONE-PNML tutorial about parameter setting.
[eos/tutorial.git] / SampleCode / PIONE-PNML / Basic4 / Serial2-4.md
1 # Serial2-4.pione
2
3 ## First
4 Multiply a specified number to all input data.
5
6 ```
7 awk '{print $1*{$d1}}' {$I[1]} > {$O[1]}
8 ```
9
10 ## Second
11 Add a specified number to all input data.
12
13 ```
14 awk '{print $1+{$d2}}' {$I[1]} > {$O[1]}
15 ```