mirror of
https://github.com/helm/helm.git
synced 2026-03-03 05:52:14 -05:00
6 lines
97 B
Bash
Executable file
6 lines
97 B
Bash
Executable file
#!/bin/sh
|
|
if [ $# -eq 0 ]; then
|
|
sed s/FOOTEST/BARTEST/g <&0
|
|
else
|
|
sed s/FOOTEST/"$*"/g <&0
|
|
fi
|