mirror of
https://github.com/moparisthebest/ImageDownloader
synced 2024-11-09 19:15:00 -05:00
16 lines
368 B
Bash
Executable File
16 lines
368 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
URL=$1
|
|
BROWSER=firefox
|
|
AES_GCM="$(dirname $(readlink -f $0))/aesgcm"
|
|
if [ ${URL: -97:1} == "#" ]
|
|
then
|
|
[ -e "$AES_GCM" ] || gcc "$(dirname $(readlink -f $0))/aesgcm.c" -lcrypto -o "$AES_GCM"
|
|
curl "$URL" | "$AES_GCM" "${URL: -96}" | feh -. -
|
|
elif echo $URL | grep -i '\.pgp$'
|
|
then
|
|
curl "$URL" | gpg2 -d | feh -. -
|
|
else
|
|
$BROWSER $URL
|
|
fi
|