aboutsummaryrefslogtreecommitdiff
path: root/blogsend24
diff options
context:
space:
mode:
authorPhilip Wittamore <philip@wittamore.com>2025-05-08 21:46:42 +0200
committerPhilip Wittamore <philip@wittamore.com>2025-05-08 21:46:42 +0200
commit4f8a7f353c08690ece6da786bb340ba67e194271 (patch)
treeab38816832e2e620d36ed13e70abc36dc10b3353 /blogsend24
parentb2c6c4f4eac2af8164e5a9f8b8a817118365f69b (diff)
downloadblog-4f8a7f353c08690ece6da786bb340ba67e194271.tar.gz
blog-4f8a7f353c08690ece6da786bb340ba67e194271.tar.bz2
blog-4f8a7f353c08690ece6da786bb340ba67e194271.zip
update
Diffstat (limited to 'blogsend24')
-rwxr-xr-xblogsend2417
1 files changed, 0 insertions, 17 deletions
diff --git a/blogsend24 b/blogsend24
deleted file mode 100755
index 5d6e53a..0000000
--- a/blogsend24
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-# update blog wittamore.com
-# edits in last 24 hours
-
-rf=web:/var/www/wittamore.com
-mf=~/src/web/wittamore.com
-
-cd $mf
-
-files=$(find * -path .tmp -prune -o -mtime 0 -type f)
-for file in $files
-do
- scp -r "$file" "$rf/$file"
-done
-
-exit 0
-