31

Is there any free application for downloading an entire site installable on Mac OS X 10.6?

alex
  • 18,247
Am1rr3zA
  • 5,463

8 Answers8

55

You can use wget with it's --mirror switch.

wget --mirror –w 2 –p --HTML-extension –-convert-links –P /home/user/sitecopy/

man page for additional switches here.

For OSX, you can easily install wget(and other command line tools) using brew.

If using the command line is too difficult, then CocoaWget is an OS X GUI for wget. (Version 2.7.0 includes wget 1.11.4 from June 2008, but it works fine.)

25

I've always loved the name of this one: SiteSucker.

UPDATE: Versions 2.5 and above are not free any more. You may still be able to download earlier versions from their website.

5

HTTrack: http://www.httrack.com.

Found in macOS Homebrew.

Provides ports to Windows, Linux-es, and macOS. Command-line utility on (seemingly?) all OSes, GUI options on some.

MicTech
  • 10,496
3

SiteSuuker has already been recommended and it does a decent job for most websites.

I also find DeepVacuum to be a handy and simple tool with some useful "presets".

Screenshot is attached below.

-

Simple interface with "presets"

PKHunter
  • 225
2

http://epicware.com/webgrabber.html

I use this on leopard, not sure if it will work on snow leopard, but worth a try

1

A1 Website Download for Mac

It has presets for various common site download tasks and many options for those who wish to configure in detail. Includes UI + CLI support.

Starts as a 30 days trial after which is turns into "free mode" (still suitable for small websites under 500 pages)

Tom
  • 469
1

pavuk is by far the best option ... It is command line but has an X-Windows GUI if you install this from the Installation Disk or download. Perhaps someone could write a Aqua shell for it.

pavuk will even find links in external javascript files that are referenced and point these to the local distribution if you use the -mode sync or -mode mirror options.

It is available through the os x ports project, install port and type

port install pavuk

Lots of options (a forest of options).

-4

Use curl, it's installed by default in OS X. wget isn't, at least not on my machine, (Leopard).

Typing:

curl http://www.thewebsite.com/ > dump.html

Will download to the file, dump.html in your current folder

Fred
  • 136