mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
11 lines
128 B
Bash
Executable File
11 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Skip the config file name argument.
|
|
shift
|
|
args=()
|
|
for arg in "$@"; do
|
|
args+=(-e "$arg")
|
|
done
|
|
|
|
sed "${args[@]}"
|