Issue in Mac Os while running sed command
Opened this issue · 1 comments
metaversed commented
sed -i 's/namespace: .*/namespace: amq-streams/' install/cluster-operator/RoleBinding.yaml
While running above got message "sed: 1: "install/cluster-operato ...": command i expects \ followed by text"
Solved by running some recommendation from StackOverflow
Ran
brew install gnu-sed
Set Alias
alias sed=gsed
nimicent commented
Thank you!