Skip to content

Instantly share code, notes, and snippets.

@nikAizuddin
Created May 23, 2017 03:36
Show Gist options
  • Save nikAizuddin/4e20025d20b2284e173cd10214f6f268 to your computer and use it in GitHub Desktop.
Save nikAizuddin/4e20025d20b2284e173cd10214f6f268 to your computer and use it in GitHub Desktop.
UNIX Shell script to download four volumes of The Art of Computer Programming by Donald E. Knuth.
#!/bin/sh
################################################################################
## ##
## The Art of Computer Programming by Donald E. Knuth. ##
## ##
################################################################################
## Volume 1 - Fundamental Algorithms, 3rd Edition
wget -c https://archive.org/download/B-001-001-249/B-001-001-249.pdf -O art_of_compProg-vol1-3rd.pdf &&
## Volume 2 - Seminumerical Algorithms, 2nd Edition
wget -c https://archive.org/download/B-001-002-137/Addison.Wesley.Donald.E.Knuth.The.Art.of.Computer.Programming.Volume.2.pdf -O art_of_compProg-vol2-2nd.pdf &&
## Volume 3 - Sorting and Searching, 2nd Edition
wget -c https://archive.org/download/B-001-001-250/B-001-001-250.pdf -O art_of_compProg-vol3-2nd.pdf &&
## Volume 4A Part 1 - Combinatorial Algorithms
wget -c https://archive.org/download/B-001-001-251/B-001-001-251.pdf -O art_of_compProg-vol4A-pt1.pdf
@larrasket
Copy link

brorken.

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