pass
Does nothing with the input.
pass
Description
Section titled “Description”The pass
operator relays the input without any modification. Outside of
testing and debugging, it is only used when an empty pipeline needs to created,
as {}
is a record, while { pass }
is a pipeline.
Examples
Section titled “Examples”Forward the input without any changes
Section titled “Forward the input without any changes”pass
Do nothing every 10s
Section titled “Do nothing every 10s”every 10s { pass}