| bytes | Various commands for working with byte data.
|
| bytes add | Add specified bytes to the binary input.
|
| bytes at | Get bytes from the input defined by a range.
|
| bytes build | Create a binary value from the provided arguments.
|
| bytes collect | Concatenate multiple binary into a single binary, with an optional separator between each.
|
| bytes ends-with | Check if binary data ends with a pattern.
|
| bytes index-of | Returns start index of first occurrence of pattern in bytes, or -1 if no match.
|
| bytes length | Output the length of any bytes in the pipeline.
|
| bytes remove | Remove specified bytes from the input.
|
| bytes replace | Find and replace bytes in binary data.
|
| bytes reverse | Reverse the bytes in the pipeline.
|
| bytes split | Split input into multiple items using a separator.
|
| bytes starts-with | Check if binary data starts with a pattern.
|