]> git.phdru.name Git - git-scripts.git/commitdiff
Escape inner quotes
authorOleg Broytman <phd@phdru.name>
Sat, 21 Feb 2015 16:40:13 +0000 (19:40 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 21 Feb 2015 16:40:13 +0000 (19:40 +0300)
touch-all

index a4be8c6b6a9776877dd78294dc7aec8e0be89192..d1035e02163136d85e7e5554c2e192d71e8844a7 100755 (executable)
--- a/touch-all
+++ b/touch-all
@@ -4,5 +4,5 @@
 # and set the file's modification time to that date/time.
 
 git ls-tree -r --name-only HEAD | while read filename; do
-  touch --date="`git log -1 --format="%cD" -- $filename`" "$filename"
+  touch --date="`git log -1 --format=\"%cD\" -- $filename`" "$filename"
 done