NAME
tsd-extract - Extract content and timestamps from a TimeStampedData (.tsd) file
VERSION
version 0.01
SYNOPSIS
tsd-extract [options] input_file.tsd
Options: -o, --output FILE Output file for extracted content -t, --timestamps Extract timestamp tokens to files -d, --timestamp-dir DIR Directory for timestamp files (required with -t) -v, --verbose Verbose output -h, --help Show this help --version Show version
DESCRIPTION
Extracts the embedded content and optionally timestamp tokens from a TimeStampedData (.tsd) file. The extracted content is saved to a file, and timestamp tokens can be saved as separate .tsr files.
EXAMPLES
# Extract content only
tsd-extract document.tsd
# Extract content to specific file
tsd-extract -o original.pdf document.tsd
# Extract content and timestamps
tsd-extract -t document.tsd
# Extract with custom timestamp directory
tsd-extract -t -d ./timestamps document.tsd
# Verbose output
tsd-extract -v -t document.tsd