summaryrefslogtreecommitdiffstats
path: root/bin/macros/addsvnid
blob: 3d0bca44479b11a1fe8a25f9c61726deb579974d (plain)
1
2
3
4
5
6
#!/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 }