jbang/pipe/upper.camel.yaml (8 lines of code) (raw):
///usr/bin/env jbang --quiet camel@apache/camel pipe "$0" "$@" ; exit $?
---
# camel-k: language=yaml
# Will upper-case the input
- from:
uri: "stream:in"
steps:
- setBody:
simple: "${body.toUpperCase()}"
- to: "stream:out"