]> git.phdru.name Git - bookmarks_db.git/blobdiff - ns-unescape
Minor optimization (free an object). Changed error message.
[bookmarks_db.git] / ns-unescape
index 90f4f8fe8a51614cf1b16112bd79e15fab9e8067..7fc559aee0bcf7f53084e9409f0a1f29a0d36716 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
 
 sed -e 's/&lt;/</g' -e 's/&gt;/>/g' -e 's/&amp;/\&/g' \
-   $HOME/.netscape/bookmarks.html >_tmp.$$ && \
-exec mv _tmp.$$ $HOME/.netscape/bookmarks.html
+   "$HOME/.netscape/bookmarks.html" >_tmp.$$ && \
+exec mv _tmp.$$ "$HOME/.netscape/bookmarks.html"