aboutsummaryrefslogtreecommitdiff
path: root/blogsend1
diff options
context:
space:
mode:
Diffstat (limited to 'blogsend1')
-rwxr-xr-xblogsend115
1 files changed, 0 insertions, 15 deletions
diff --git a/blogsend1 b/blogsend1
deleted file mode 100755
index 0a12bb6..0000000
--- a/blogsend1
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-rf=web:/var/www/wittamore.com
-mf=~/src/web/wittamore.com
-
-cd $mf
-
-files=$(find * -path .tmp -prune -o -mmin -60 -type f)
-for file in $files
-do
- scp -r "$file" "$rf/$file"
-done
-
-exit 0
-