16 lines
282 B
Text
16 lines
282 B
Text
|
#!/bin/sh -e
|
||
|
|
||
|
file="$1"
|
||
|
host=staticweb.ungleich.ch
|
||
|
dir=/home/services/www/nico/www.nico.schottelius.org/www/temp
|
||
|
url="https://www.nico.schottelius.org/temp"
|
||
|
|
||
|
[ -z "$file" ] && exit 1
|
||
|
|
||
|
bfile="$(basename "$file")"
|
||
|
|
||
|
ssh "$host" "rm -f \"$dir/$bfile\""
|
||
|
|
||
|
|
||
|
echo "Deleted ${url}/${bfile}"
|