맥(솔라리스)
[mac] macos sed 명령어 에러
변군이글루
2021. 4. 23. 16:20
반응형
macos sed 명령어 에러
sed -i 's/module.vpc/modules.vpc/g' test.tf
sed -i 's/module.vpc/modules.vpc/g' test.tf
$ sed -i 's/module.vpc/modules.vpc/g' test.tf
sed: 1: "test.tf": extra characters at the end of p command
해결 방법
sed -i '' 's/module.vpc/modules.vpc/g' test.tf
sed -i '' 's/module.vpc/modules.vpc/g' test.tf
728x90
반응형