Philip Wittamore пре 9 месеци
родитељ
комит
9df770b4db
1 измењених фајлова са 15 додато и 0 уклоњено
  1. 15 0
      blog/upb

+ 15 - 0
blog/upb

@@ -0,0 +1,15 @@
+#!/bin/sh
+
+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
+