쉘 스크립트를 사용하여 특수 문자가 포함된 줄을 추가하는 방법

쉘 스크립트를 사용하여 특수 문자가 포함된 줄을 추가하는 방법

특수 문자가 포함된 행을 추가해야 하는데 이것이 내 행입니다.

sed -I  's/)/File have something 'example')/g' "example.ctl";

여기에 이미지 설명을 입력하세요.

작은 따옴표와 함께 원하는 출력

File have something ‘example’ 

어떻게 해야 하나요?

답변1

큰따옴표 포함

echo "hello (world)" | sed "s/)/ with an 'example')/"

주다

hello (world with an 'example')

복잡한 인용문 포함:

echo "hello (world)" | sed "s/)/ with an hello ‘example’ )/"
hello (world with an hello ‘example’ )

관련 정보