Merge pull request #101 from The-King-of-Toasters/master

Change sci-hub command to use 1 perl-style grep
This commit is contained in:
Luke Smith
2018-08-10 11:42:55 -04:00
committed by GitHub

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