sed: 0과 :를 바꾸는 방법?

sed: 0과 :를 바꾸는 방법?
sed -i s:group\:\:000::g  myfile 
/usr/local/bin/sed: -e expression #1, char 12: number option to `s' command may not be zero

group::000 문자열을 빈 문자열로 바꾸고 싶습니다. \로 이스케이프를 시도했지만 작동하지 않습니다.

답변1

group::000 문자열을 빈 문자열로 바꾸고 싶습니다.

이것은 의미한다s/group::000//g

sed -i s/group::000//g myfile

그러면 문제가 해결될 것입니다.

관련 정보