Make rushlink script more portable.

It didn't work on mac (and bsd, probably). Now it does.
This commit is contained in:
Mara Bos 2020-05-04 12:06:06 +02:00
parent 01adfa8f2f
commit 28ddaee9d9
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ link() {
*)
curl -sS -Ffile=@- "$LINK" < "$1"
;;
esac | sed -n '1p;/deleteToken/{s@.*\(https://\)@\1@;p;q}' | (
esac | awk 'NR == 1 { print } $NF ~ /deleteToken=/ { print $NF; exit }' | (
IFS= read -r link
IFS= read -r deletelink
echo "$link"