Find the answer to your Linux question:
Results 1 to 1 of 1
Borrowed this from Puppy Linux Discussion Forum :: View topic - Free books from Project Gutenberg! Credit for this goes to sc0ttman for posting this. Open up a terminal and ...
  1. #1
    Linux Guru rokytnji's Avatar
    Join Date
    Jul 2008
    Location
    Pecos, Texas
    Posts
    2,941

    How to download loads of books from Project Gutenberg easily!

    Borrowed this from Puppy Linux Discussion Forum :: View topic - Free books from Project Gutenberg! Credit for this goes to sc0ttman for posting this.

    Open up a terminal and type 'wget' then hit enter.
    You will see all the options for this download tool.

    You can use this tool to download load of stuff

    Here is a link to all the books at Project Gutenberg (May, 2011):
    http://www.gutenberg.org/feeds/offline-package.tar.bz2

    extract tar to get a list of books in your favorite text editor.

    To download list in terminal

    Code:
    wget -w 2 http://www.gutenberg.org/feeds/offline-package.tar.bz2
    Extract

    Below are some more examples to download free books from the project gutenburg library.
    These examples use Project Gutenbergs 'harvest' API to search the database of books.

    Guide:

    1. This is an example of how to get all files using wget:
    Code:
    wget -w 2 -m http://www.gutenberg.org/robot/harvest
    2. If you don't want the mp3 files, say:
    Code:
    wget -w 2 -m -R "mp3" http://www.gutenberg.org/robot/harvest
    3. If you want only some types of files say:
    Code:
    wget -w 2 -m http://www.gutenberg.org/robot/harvest?filetypes[]=txt&filetypes[]=html
    NOTE: Replace txt and html with the file types you are interested in.

    4. If you want only files in a given language say:
    Code:
    wget -w 2 -m http://www.gutenberg.org/robot/harvest?langs[]=de
    Free books are always Good.
    Last edited by rokytnji; 05-12-2011 at 05:50 PM.
    Linux Registered User # 475019
    Lead,Follow, or get the heck out of the way
    AntiX,Puppy,Ubuntu,Windows 7=(cuz of scooters)
    Open CourseWare for Linux Geeks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •