Skip to content

Instantly share code, notes, and snippets.

@bbohling
Created October 1, 2019 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbohling/397e228add39e71698f3918a2eba2f2f to your computer and use it in GitHub Desktop.
Save bbohling/397e228add39e71698f3918a2eba2f2f to your computer and use it in GitHub Desktop.
Download Vimeo Videos from Vimeo-provided CSV
#!/usr/bin/env bash
fname="videos.csv"
# Loop through each line
sed 1d videos.csv | while IFS="," read -r count id title plays likes url; do
echo "$title - $url"
wget $url -O "$title.mp4"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment