SCM Repository
Annotation of /web/update.sh
Parent Directory
|
Revision Log
Revision 362 - (view) (download) (as text)
1 : | jhr | 362 | #!/bin/sh |
2 : | # | ||
3 : | # upload Diderot web-site content using rsync | ||
4 : | # | ||
5 : | |||
6 : | LOCAL=htdocs | ||
7 : | REMOTE=$USER@classes.cs.uchicago.edu:/stage/web_static/diderot-language/ | ||
8 : | |||
9 : | export RSYNC_RSH | ||
10 : | RSYNC_RSH=ssh | ||
11 : | |||
12 : | OPTIONS="-v -r -u -l -p -t --delete-excluded" | ||
13 : | EXCLUDES="--exclude=CVS/ --exclude=.DS_Store --exclude=.svn" | ||
14 : | |||
15 : | exec rsync $OPTIONS $EXCLUDES $LOCAL $REMOTE | ||
16 : |
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |