Skip to content

Instantly share code, notes, and snippets.

@rberenguel
Last active August 29, 2015 14:22
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 rberenguel/ca037253b7643643cab1 to your computer and use it in GitHub Desktop.
Save rberenguel/ca037253b7643643cab1 to your computer and use it in GitHub Desktop.
Dump (if correctly cleaned up) instapaper links from a folder-category to a folder
csvfix find -e 'Videos' -f 4 ~/Downloads/instapaper-export.csv | csvfix edit -e "s/[ ,.|:'\?]/_/g" -f 2 | csvfix order -f 2,1,3,4 | csvfix printf -fmt "wget --directory-prefix='./%s/' -T 60 -q -p -k %s" > x;cat x;chmod +x x;./x;rm ./x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment