15 lines
282 B
Bash
Executable file
15 lines
282 B
Bash
Executable file
#!/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}"
|