19 lines
586 B
Bash
Executable File
19 lines
586 B
Bash
Executable File
sp_porn="";
|
|
sp_path="";
|
|
sp_file="";
|
|
while getopts "np:l" o;do case "${o}" in
|
|
n) sp_porn="nsfw/";;
|
|
p) sp_path="$OPTARG";;
|
|
l) sp_file="/home/wisknort/Flashy/Pics/puush/$(ls -t /home/wisknort/Flashy/Pics/puush | head -1)";;
|
|
esac done
|
|
shift $((OPTIND-1))
|
|
if [ -z $sp_file ]; then sp_file="$1"; fi
|
|
if [ -z $sp_path ]; then sp_path=$(basename "$sp_file"); fi
|
|
sp_targ="/static/pics/$sp_porn$sp_path"
|
|
scp "$sp_file" jasmine:"/srv/http$sp_targ"
|
|
ssh jasmine chown http:http "'/srv/http$sp_targ'"
|
|
ssh jasmine chmod 664 "'/srv/http$sp_targ'"
|
|
echo "http://rakka.au$sp_targ"
|
|
|
|
#desu.si, catbox.moe
|