瀏覽代碼

first commit

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
+