mirror of
https://github.com/mishimasensei/macse30mlb.git
synced 2024-11-21 20:30:53 +00:00
8215c802ed
The macintoshrepository site has a timer that limits downloads for unregistered users to once every 20 minutes. Plus, the site cannot be archived on the Internet Archive Wayback Machine, so stay away from it.
16 lines
1018 B
Bash
Executable File
16 lines
1018 B
Bash
Executable File
#! /bin/sh
|
|
# Use a shell script to download the scans so that we do not add bloat
|
|
# to the repository size that we don't strictly need. GitHub has
|
|
# bandwidth limits, so let's try to keep away from those as much as
|
|
# possible.
|
|
|
|
curl -L -O https://museo.freaknet.org/gallery/apple/stuff/mac/andreas.kann/SE30_P1.GIF
|
|
curl -L -O https://museo.freaknet.org/gallery/apple/stuff/mac/andreas.kann/SE30_P2.GIF
|
|
curl -L -O https://museo.freaknet.org/gallery/apple/stuff/mac/andreas.kann/SE30_P3.GIF
|
|
curl -L -O https://museo.freaknet.org/gallery/apple/stuff/mac/andreas.kann/SE30_P4.GIF
|
|
curl -L -O https://museo.freaknet.org/gallery/apple/stuff/mac/andreas.kann/SE30_P5.GIF
|
|
curl -L -O https://museo.freaknet.org/gallery/apple/stuff/mac/andreas.kann/SE30_SCSI1.GIF
|
|
curl -L -O https://museo.freaknet.org/gallery/apple/stuff/mac/andreas.kann/SE30_SCSI2.GIF
|
|
curl -L -O https://museo.freaknet.org/gallery/apple/stuff/mac/andreas.kann/SE30_P7.GIF
|
|
curl -L -O https://museo.freaknet.org/gallery/apple/stuff/mac/andreas.kann/SE30_P8.GIF
|