bash에서 일부 텍스트가 포함된 줄 바로 앞에 텍스트 문서에 줄을 삽입하는 방법은 무엇입니까?

bash에서 일부 텍스트가 포함된 줄 바로 앞에 텍스트 문서에 줄을 삽입하는 방법은 무엇입니까?

변수 say가 있고 $strToInsert파일이 있습니다 file.html. 마지막 모양을 찾아서 </head>그 줄 앞에 새 줄을 삽입하고 $strToInsert내용을 채우는 방법이 궁금합니다.

내가 가진 것은 다음과 같습니다.

GACODE="UA-00000000-1"

if [ "$2" = "" ]
then
    echo "Usage: $0 <url to extract doxygen generated docs into> <GA tracker code if needed>"
    echo "Using default"
else
    GACODE = $2
fi

GASTR="<script>var _gaq = _gaq || [];_gaq.push([\'_setAccount\', \'$GACODE\']);_gaq.push([\'_trackPageview\']);(function() {var ga = document.createElement('script'); ga.type = 'text/javascript\'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);})();</script>"

하지만 내가 시도할 때:

sed -i 's#</head>#'$GASTR'\n</head>#' header.html

나는 얻다:

sed: -e expression #1, char 21: unterminated `s' command

내 코드에 무슨 문제가 있나요?

답변1

sed -i "s#</head>#$strToInsert\n</head>#" file.html

</head>하지만 "마지막 출현" 이 파일에 여러 개가 있을 수 있다는 뜻인지는 잘 모르겠습니다 .

답변2

sed "/<\/head>/i\
$strToInsert" file.html

이렇게 하면 앞에 새 줄이 삽입됩니다.모든 </head>, 그런데 왜 둘 이상 있습니까?

답변3

cat "$file" #(before)
1
2 </head>
3
4 </head>
5
6 </head>

strToInsert="hello world"
lnum=($(sed -n '/<\/head>/=' "$file"))  # make array of line numbers
((lnum>0)) && sed -i "${lnum[$((${#lnum[@]}-1))]}i \
                      $strToInsert" "$file"

cat "$file" #(after)
1
2 </head>
3
4 </head>
5
hello world
6 </head>

관련 정보