Files
kustomize/plugin/someteam.example.com/v1/SedTransformer
2019-04-25 20:30:10 -07:00

12 lines
131 B
Bash
Executable File

#!/bin/bash
# Skip the config file name argument.
shift
args=""
for arg in $@; do
args="$args -e $arg"
done
cat - | sed $args