diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-05-15 00:08:40 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-05-15 00:08:40 +0200 |
commit | 5aca10cf40030527c50b89522310e44de29cdf01 (patch) | |
tree | 7f9c38df0fb1b34b299da7d268f6e91bdfc405a3 /blogsend | |
parent | d6d1614c3541c9105acce4d99a2aa1c4432f68a5 (diff) | |
download | blog-5aca10cf40030527c50b89522310e44de29cdf01.tar.gz blog-5aca10cf40030527c50b89522310e44de29cdf01.tar.bz2 blog-5aca10cf40030527c50b89522310e44de29cdf01.zip |
update
Diffstat (limited to 'blogsend')
-rwxr-xr-x | blogsend | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ echo "Sending files modified in the past $HOURS hour(s)..." files=$(find -- * -iname "*.html" -path .tmp -prune -o -mmin -$MINUTES -type f) for file in $files do - scp -r "$file" "$rf/$file"; + scp "$file" "$rf/$file"; done echo "Done." |