Copy |
Pipelines v1.9 |
.* Example by TenFiftyTwo(c). |
.* The following pipeline handles two input arguments:
.*
.* &arg1. The name of a file to read.
.* &arg2. The name of the output file.
.* The pipeline copies the input file to the output file.
pipe < &arg1 .* Read input file.
| > &arg2 .* Write to output file.