diff options
Diffstat (limited to 'blogsend3')
-rwxr-xr-x | blogsend3 | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/blogsend3 b/blogsend3 deleted file mode 100755 index 19c4bb3..0000000 --- a/blogsend3 +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# update edits in past 3 hours - -rf=web:/var/www/wittamore.com -mf=/home/philip/src/web/wittamore.com - -cd $mf - -files=`find * -path .git -prune -o -mmin -180 -type f ` -for file in $files -do - scp -r "$file" "$rf/$file" -done - -exit 0 - |