소스 검색

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
+