У меня есть переменная 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>