From dc2544660cefa39f409dd9de21a5d3cbf8953bdf Mon Sep 17 00:00:00 2001 From: Kay Faraday Date: Sat, 11 Jun 2022 02:08:40 +0000 Subject: [PATCH] get_emojis_mastodon.sh: download in parallel --- scripts/get_emojis_mastodon.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/get_emojis_mastodon.sh b/scripts/get_emojis_mastodon.sh index 0a37825..b49a811 100755 --- a/scripts/get_emojis_mastodon.sh +++ b/scripts/get_emojis_mastodon.sh @@ -55,6 +55,5 @@ for ((i=0; i<${#shortcodesArray[@]}; i++)); do echo "Skipping $filename because it already exists" continue fi - echo "Downloading $filename" - curl -s "$url" -o "$emojiFolder/$filename" -done \ No newline at end of file + curl -s "$url" -o "$emojiFolder/$filename" & +done