Skip to content

Instantly share code, notes, and snippets.

@yurenju
Created April 16, 2015 04:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yurenju/993077a7312a773a0e7b to your computer and use it in GitHub Desktop.
Save yurenju/993077a7312a773a0e7b to your computer and use it in GitHub Desktop.
require('shelljs/global');
var files = cat('pdfs.txt').split('\n');
files.forEach(function(file, index) {
if (file.includes('pdf')) {
exec('wget ' + file + ' -O ' + index + '.pdf');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment