intro

Introduction

01KG8AWVSC7FY4M9EN0V2YBCC5

Properties

description
# Introduction ## Overview - What this is (type, form, dates, scope) This is an "intro" segment extracted from the [Shakespeare Complete Works Download Script](arke:01KG8AWGEP5VC33Q2EJ85FCB6J), a technical manual. It is a portion of a shell script, starting at line 1 and ending at line 32 of the source file, [download_shakespeare.sh](arke:01KG89K4MCC02B3RKGNV2XEV39). The segment was extracted on January 30, 2026. This introduction sets the stage for downloading William Shakespeare's complete works. ## Context - Background and provenance from related entities This introduction is part of a larger shell script designed to download public domain PDFs of Shakespeare's complete works from the Internet Archive. The script is organized by category and aims to deduplicate the downloads, preferring illustrated editions. The script is part of the [Shakespeare](arke:01KG89JREDR8WY5QQGYR5FZRDY) collection. ## Contents - What it contains, key subjects and details The introduction begins with a shebang line and comments describing the script's purpose. It sets the base directory and archive base URL for downloads. It also defines a `download()` function to handle the download process, displaying progress. The introduction concludes with a section heading for the "TRAGEDIES" category, which is followed by the next segment.
description_generated_at
2026-01-30T20:53:32.667Z
description_model
gemini-2.5-flash-lite
description_title
Introduction
end_line
32
extracted_at
2026-01-30T20:53:12.673Z
extracted_by
structure-extraction-lambda
start_line
1
text
#!/bin/bash # Shakespeare Complete Works Download Script # Downloads public domain PDFs from Internet Archive # Organized by category, deduplicated (preferring illustrated editions) set -e BASE_DIR="/Users/chim/Working/arke_institute/collections/shakespeare" ARCHIVE_BASE="https://archive.org/download" # Create directory structure mkdir -p "$BASE_DIR"/{tragedies,comedies,histories,poetry,illustrated_special} echo "==========================================" echo "Shakespeare Complete Works Downloader" echo "==========================================" echo "" # Function to download with progress download() { local url="$1" local output="$2" echo "Downloading: $(basename "$output")" curl -L --progress-bar -o "$output" "$url" echo " ✓ Done" } # ========================================== # TRAGEDIES (10 plays) # ========================================== echo ""
title
Introduction

Relationships