Update linkloc

master
89wc 2023-09-05 20:01:17 +00:00
parent 6d766bf31f
commit c3632f3020
1 changed files with 6 additions and 11 deletions

17
linkloc
View File

@ -1,16 +1,11 @@
#!/bin/bash
if [ -z $1 ]; then echo "linkInvalid"; exit 1; fi;
URL="${1}"
if [ -z "${1}" ]; then echo "linkInvalid"; exit 1; fi;
HEADS=$(curl -L --head --silent -A "getloc" "$URL");
STATUS=$(echo "$HEADS" | head -1);
LOCATION=$(echo "$HEADS" | grep -ie '^location' | grep -e 'http../' \
| tail -1 | cut -d'?' -f1 | cut -d' ' -f2 | sed 's@^.*reddit.com@https://old.reddit.com@' \
LOCATION=$(\
curl -L --head --silent -A "getloc" "${1}" | grep -ie '^location' \
| grep -e 'http../' | tail -1 | cut -d'?' -f1 | cut -d' ' -f2 \
| sed 's@^.*reddit.com@https://old.reddit.com@' \
)
if [ -z "$LOCATION" ]; then
echo "$URL"; exit 2;
fi
echo "$LOCATION"
if [ -z "$LOCATION" ]; then echo "${1}"; else echo "$LOCATION"; fi