nsbin/rm_tmp

16 lines
282 B
Plaintext
Raw Permalink Normal View History

2021-11-25 09:36:11 +00:00
#!/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}"