변수 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>