- description
- # HISTORIES
## Overview
This is a segment of type `technical_manual` labeled "HISTORIES". It contains a section of a shell script that downloads various historical plays by William Shakespeare. The segment was extracted on January 30, 2026.
## Context
This segment is part of the [Shakespeare Complete Works Download Script](arke:01KG8AWGEP5VC33Q2EJ85FCB6J), a technical manual that is extracted from the file [download_shakespeare.sh](arke:01KG89K4MCC02B3RKGNV2XEV39). The script is part of the [Shakespeare](arke:01KG89JREDR8WY5QQGYR5FZRDY) collection. This segment comes after the [COMEDIES](arke:01KG8AWVSHYRN0RSXKZB0R3AAG) segment and before the [POETRY](arke:01KG8AWVSHMF6TKQ04FAXZC86B) segment within the script.
## Contents
The segment contains shell script commands to download ten historical plays attributed to William Shakespeare from an archive. The script uses the `download` command with specific URLs pointing to PDF files of the plays and saves them to a local directory named "histories". The plays included are:
* King John
* Richard II
* Henry IV, Part 1
* Henry IV, Part 2
* Henry V
* Henry VI, Part 1
* Henry VI, Part 2
* Henry VI, Part 3
* Richard III
* Henry VIII
- description_generated_at
- 2026-01-30T20:53:27.724Z
- description_model
- gemini-2.5-flash-lite
- description_title
- HISTORIES
- end_line
- 161
- extracted_at
- 2026-01-30T20:53:12.673Z
- extracted_by
- structure-extraction-lambda
- start_line
- 130
- text
- echo "=== HISTORIES ==="
download "$ARCHIVE_BASE/kingjohn00shak/kingjohn00shak.pdf" \
"$BASE_DIR/histories/01_king_john_1901.pdf"
download "$ARCHIVE_BASE/kingrichardii00shak/kingrichardii00shak.pdf" \
"$BASE_DIR/histories/02_richard_ii_1901.pdf"
download "$ARCHIVE_BASE/henryivpt01shak/henryivpt01shak.pdf" \
"$BASE_DIR/histories/03_henry_iv_part_1_1901.pdf"
download "$ARCHIVE_BASE/secondpartofking00shakuoft/secondpartofking00shakuoft.pdf" \
"$BASE_DIR/histories/04_henry_iv_part_2_1921.pdf"
download "$ARCHIVE_BASE/henryv00shak/henryv00shak.pdf" \
"$BASE_DIR/histories/05_henry_v_1901.pdf"
download "$ARCHIVE_BASE/firstpartofkingh00shak/firstpartofkingh00shak.pdf" \
"$BASE_DIR/histories/06_henry_vi_part_1_1918.pdf"
download "$ARCHIVE_BASE/in.ernet.dli.2015.184288/2015.184288.King-Henry-Vi-Second-Part.pdf" \
"$BASE_DIR/histories/07_henry_vi_part_2_pre1923.pdf"
download "$ARCHIVE_BASE/shakespeareskin06shakgoog/shakespeareskin06shakgoog.pdf" \
"$BASE_DIR/histories/08_henry_vi_part_3_1895.pdf"
download "$ARCHIVE_BASE/tragedyofkingric1896shak/tragedyofkingric1896shak.pdf" \
"$BASE_DIR/histories/09_richard_iii_1896.pdf"
download "$ARCHIVE_BASE/henryviii00shak/henryviii00shak.pdf" \
"$BASE_DIR/histories/10_henry_viii_1901.pdf"
- title
- HISTORIES