Skip to content

Instantly share code, notes, and snippets.

@AlbertSuarez
Created August 26, 2020 09:43
Show Gist options
  • Save AlbertSuarez/3561c3c64d5f73160f42d035a445f2b7 to your computer and use it in GitHub Desktop.
Save AlbertSuarez/3561c3c64d5f73160f42d035a445f2b7 to your computer and use it in GitHub Desktop.
wget_from_csv.sh
#!/usr/bin/env bash
for line in $(cat INPUT_FILE | cut -d "," -f1); do wget $line; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment