1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Update sed pattern used to process logs

This commit is contained in:
Kris Kennaway 2003-04-06 05:42:41 +00:00
parent 26bf92a496
commit 393bb456a9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=78394

View File

@ -49,7 +49,7 @@ else
maints="$maints $maint"
echo -n "<a href=\"mailto:$maint\">$maint</a>" >>$of
echo "</td><td valign=\"top\">" >>$of
for file in $(cat $log.log | sed -e '1,/^list of extra files and directories/d' -e '/^list of all files and directories/,$d' -e '/^ /d' -e 's/^extra: //' -e 's/^missing: //' -e 's/://' | awk '{print $1}'); do
for file in $(cat $log.log | sed -e '1,/^list of extra files and directories/d' -e '/^=======/,$d' -e '/^ /d' -e 's/^extra: //' -e 's/^missing: //' -e 's/://' | awk '{print $1}'); do
echo "$file<br>" >>$of
done
echo "</td></tr>" >>$of