]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/forum/How_does_ikiwiki_remember_times__63__.mdwn
fix a typo and remove commneted out ctime line
[ikiwiki.git] / doc / forum / How_does_ikiwiki_remember_times__63__.mdwn
index cb14df77f7881a867e3178d88af6e6ad7345bc34..9685a6859658a36ee44b8528da816cb3eb353a69 100644 (file)
@@ -89,7 +89,7 @@ Do I have it right?
 >>>>> -- [[Jon]]
 
 > A quick workaround for me to get modification times right is the following
-> little zsh script, which unfortynately only works for git:
+> little zsh script, which unfortunately only works for git:
 
     #!/usr/bin/env zsh
     
@@ -97,7 +97,6 @@ Do I have it right?
     
     for FILE in **/*(.); do
       TIMES="`git log --follow  --pretty=format:%ai $FILE`"
-      #CTIME="`echo $TIMES | tail -n1`"
       MTIME="`echo $TIMES | head -n1`"
     
       echo  touch -m -d "$MTIME" $FILE