Skip to content

Instantly share code, notes, and snippets.

@alexgleason
Last active October 6, 2016 10:41
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 alexgleason/299d659d19458da13d0e19aa8460586f to your computer and use it in GitHub Desktop.
Save alexgleason/299d659d19458da13d0e19aa8460586f to your computer and use it in GitHub Desktop.
Download Facebook albums
# /bin/bash
wget -i urls.txt --content-disposition --adjust-extension
for i in `find $1 -type f`
do
mv $i `echo $i | cut -d? -f1`
done
@sant527
Copy link

sant527 commented Oct 6, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment