9468f9b060
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
15 lines
275 B
Bash
Executable file
15 lines
275 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
file="$1"
|
|
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"
|
|
ssh $host "chmod a+r \"$dir/$bfile\""
|
|
|
|
echo "Pre-released ${url}/${bfile}"
|