diff options
Diffstat (limited to 'publish')
-rwxr-xr-x | publish | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -27,6 +27,23 @@ # Author: Florian Reitmeir # E-mail: florian@reitmeir.org +# Publishes files on a webserver. +# +# This script copies files or directories as given on the command line, +# or stdin or the xclipboard, to a remote location using rsync. That +# remote directory should be exposed online and ideally be o-r or have +# indexing disabled. +# +# The directory names chosen by this script are random(ish) but still +# contain a date string so one know how old things are when looking at them +# (Or one can just have cron clean out stuff older than a week or a month +# automagically). +# +# The random location chosen is printed to stdout when the script finishes, +# and is copied to the xclipboard if the xclip(1) utility is installed· +# +# base_http and base_rsync can be overriden in a ~/.publish.cfg shell snippet. + base_http=http://www.example.com/pub base_rsync=marvin.example.com:/var/www/www.example.com/htdocs/pub |