Change sci-hub command to use 1 perl-style grep

This commit is contained in:
Stephen Gregoratto 2018-08-10 20:47:01 +10:00
parent ccfe0f2018
commit bcdd5eb4a2

View file

@ -31,7 +31,7 @@ elif echo $wgetFiles | grep -w $ext > /dev/null; then
elif echo "$@" | grep "$vidsites">/dev/null; then
setsid nohup mpv -quiet "$1" > /dev/null & disown
elif echo "$@" | grep "$academic">/dev/null; then
curl -sO $(curl -s "$scihub""$@" | grep location.href | grep -o http.*pdf) & disown
curl -sO "$(curl -s "$scihub$*" | grep -Po "(?<=location.href=').+.pdf")" & disown
else
setsid nohup $BROWSER "$1" 2>/dev/null & disown
fi