Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 1.21 KB

README.md

File metadata and controls

47 lines (35 loc) · 1.21 KB

AtariPart

Command line tool to extract partitions and files from Atari ST hard disk images.

Prerequisites

Usage

java -jar ataripart.jar [options] [command] [command options]
  Options:
    --help
      Display help
  Commands:
    analyze: Search a whole disk image for root sectors
      Usage: analyze [Hard disk image]

    list: List all root sectors and their partitions, starting with the mbr
      Usage: list [options] [Hard disk image]
        Options:
          -b, --backup
            Display backup root sectors, if any
            Default: false

    partitions: Extract all partitions to a directory.
      Usage: partitions [options] [Hard disk image] [Directory to copy partition contents to]
        Options:
          -c, --convert
            Convert boot sectors to MS DOS format
            Default: false

    files: Extract all files from all partitions to a directory. Needs mtools installed.
      Usage: files [Hard disk image] [Directory to copy files to]

Building

mvn clean install

This will create the ataripart.jarin the target directory.