summaryrefslogtreecommitdiffstats
path: root/bin/macros/addsvnid
blob: b010edc75967c4d173ce172c3b1f8fb06625d27e (plain)
1
2
3
4
5
#!/usr/bin/awk -f
# Add an SVN $Id$ comment at the end of the comments header
/^#/ { aftercom = 1 }
!/^#/ && aftercom && ! done { print "# $Id$"; done = 1 }
{ print }