From 8aa7a529dc09190d11ff0d042010bc4ff1c5e3ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Thu, 24 Jan 2019 15:35:32 +0100 Subject: [PATCH] Name the output folder as argument --- rdit.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rdit.sh b/rdit.sh index 2eb9bc8..bc70a04 100644 --- a/rdit.sh +++ b/rdit.sh @@ -1,13 +1,12 @@ #!/bin/bash #cfg -output="down" useragent="Love by u/gadelat" subreddit=$1 url="https://www.reddit.com/r/$subreddit/.json?raw_json=1" content=`wget -U "$useragent" -q -O - $url` -mkdir -p $output +mkdir -p $subreddit while : ; do urls=$(echo -e "$content"|grep -Po '"source": {"url":.*?[^\\]",'|cut -f 6 -d '"') names=$(echo -e "$content"|grep -Po '"title":.*?[^\\]",'|cut -f 4 -d '"') @@ -19,7 +18,7 @@ while : ; do id=`echo -e "$ids"|sed -n "$a"p` echo $name newname="$name"_"$subreddit"_$id.${url##*.} - wget -U "$useragent" --no-check-certificate -nv -nc -P down -O "$output/$newname" $url + wget -U "$useragent" --no-check-certificate -nv -nc -P down -O "$subreddit/$newname" $url fi a=$(($a+1)) done