Create README.md

This commit is contained in:
4am 2018-05-31 17:34:29 -04:00 committed by GitHub
parent 163d40fe65
commit 0c374c72b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 55 additions and 0 deletions

55
README.md Normal file
View File

@ -0,0 +1,55 @@
```
$ ./wozardry verify -h
usage: wozardry verify [-h] file
Verify file structure and metadata of a .woz disk image (produces no output
unless a problem is found)
positional arguments:
file .woz disk image
optional arguments:
-h, --help show this help message and exit
$ ./wozardry dump -h
usage: wozardry dump [-h] file
Print all available information and metadata in a .woz disk image
positional arguments:
file .woz disk image
optional arguments:
-h, --help show this help message and exit
$ ./wozardry edit -h
usage: wozardry edit [-h] [-i INFO] [-m META] file
Edit information and metadata in a .woz disk image
positional arguments:
file .woz disk image (modified in place)
optional arguments:
-h, --help show this help message and exit
-i INFO, --info INFO change information field. INFO format is "key:value".
Acceptable keys are disk_type, write_protected,
synchronized, cleaned, creator, version. Other keys
are ignored.
-m META, --meta META change metadata field. META format is "key:value".
Standard keys are title, subtitle, publisher,
developer, copyright, version, language, requires_ram,
requires_machine, notes, side, side_name, contributor,
image_date. Other keys are allowed.
Tips:
- Use repeated flags to edit multiple fields at once.
- Use "key:" with no value to delete a metadata field.
- Keys are case-sensitive.
- Some values have format restrictions; read the .woz specification.
```