Created
August 4, 2022 16:00
-
-
Save sgmills/34feda5c63c2f4c947157beedc6c791b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
fetch_from="$4" | |
save_to="$5" | |
# Check for the image and grab it if it does not exist | |
if [ ! -f "$save_to" ]; then | |
curl -o "$save_to" "$fetch_from" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment