3 # This script updates the date lines in the man pages to the date of the last
8 find man
-type f |
while read -r i
; do
9 git_date
=$
(git log
-1 --date=short
--format="%ad" -- "$i")
10 [ -z "$git_date" ] && continue
11 sed -i "s|^\.Dd.*|.Dd $(date -d "$git_date" "+%B
%-d, %Y
")|" "$i"