mirror of
https://github.com/helm/helm.git
synced 2026-04-29 18:19:15 -04: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
|