pass

Table of Contents

Operator

pass — copy input values to output

Synopsis

pass

Description

The pass operator outputs a copy of each input value. It is typically used with operators that handle multiple branches of the pipeline such as fork and join.

Examples

Copy input to output

Error:
echo '1 2 3' | super -z -c pass -

Copy each input value to three parallel pipeline branches and leave the values unmodified on one of them

Error:
echo '"HeLlo, WoRlD!"' | super -z -c '
  fork (
    => pass
    => upper(this)
    => lower(this)
) |> sort' -
Next: put

SuperDB