2013-10-26 21:28:38 +00:00
|
|
|
#!/bin/sh -e
|
2008-07-24 07:29:50 +00:00
|
|
|
|
2013-10-26 21:28:38 +00:00
|
|
|
file="$1"
|
2008-07-24 07:29:50 +00:00
|
|
|
host=home.schottelius.org
|
|
|
|
dir=public_html/temp/
|
|
|
|
url="http://home.schottelius.org/~nico/temp"
|
|
|
|
|
|
|
|
[ -z "$file" ] && exit 1
|
|
|
|
|
|
|
|
bfile="$(basename "$file")"
|
|
|
|
|
|
|
|
scp "$file" "${host}:$dir"
|
2011-07-21 08:59:03 +00:00
|
|
|
ssh $host "chmod a+r \"$dir/$bfile\""
|
2008-07-24 07:29:50 +00:00
|
|
|
|
|
|
|
echo "Pre-released ${url}/${bfile}"
|