Guest User

Untitled

a guest
Jun 24th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #
  2.  
  3. function syncDown() {
  4. f=${1/\/$/}/;
  5. rsync -acuvz --exclude 'CVS' --exclude '*.class' --exclude '.classpath' server:projects/$f $f;
  6. }
  7.  
  8. function syncUp() {
  9. f=${1/\/$/}/;
  10. rsync -acuvz --exclude 'CVS' --exclude '*.class' $f server:projects/$f;
  11. }
Add Comment
Please, Sign In to add comment