78e21b5200
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
15 lines
270 B
Bash
Executable file
15 lines
270 B
Bash
Executable file
#!/bin/sh
|
|
|
|
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}"
|