Merge pull request #99 from ThomasFok/update_acx_readme

Update README.md
This commit is contained in:
A2 Geek 2023-02-19 19:16:05 -06:00 committed by GitHub
commit 6064b52d41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 13 deletions

View File

@ -43,7 +43,7 @@ ProDOS format; 110592 bytes free; 32768 bytes used.
$ acx --help $ acx --help
Usage: acx [-hVv] [--debug] [--quiet] [COMMAND] Usage: acx [-hVv] [--debug] [--quiet] [COMMAND]
'ac' experimental utility 'acx' experimental utility
Options: Options:
--debug Show detailed stack traces. --debug Show detailed stack traces.
@ -53,37 +53,41 @@ Options:
-V, --version Print version information and exit. -V, --version Print version information and exit.
Commands: Commands:
convert Uncompress a ShrinkIt or Binary II file; compare Compare two disk images.
convert Uncompress a ShrinkIt or Binary II file; or convert a
DiskCopy 4.2 image into a ProDOS disk image.
copy, cp Copy files between disks. copy, cp Copy files between disks.
create, mkdisk Rename volume of a disk image. create, mkdisk Create a disk image.
delete, del, rm Delete file(s) from a disk image. delete, del, rm Delete file(s) from a disk image.
diskmap, map Show disk usage map. diskmap, map Show disk usage map.
dump Dump a block or sector.
export, x, get Export file(s) from a disk image. export, x, get Export file(s) from a disk image.
dups Find duplicate files.
help Displays help information about the specified command help Displays help information about the specified command
import, put Import file onto disk. import, put Import file onto disk.
info, i Show information on a disk image(s). info, i Show information on a disk image(s).
list, ls List directory of disk image(s). list, ls List directory of disk image(s).
lock Lock file(s) on a disk image. lock Lock file(s) on a disk image.
mkdir, md Create a directory on disk. mkdir, md Create a directory on disk.
read Read a block or sector.
rename, ren Rename file on a disk image. rename, ren Rename file on a disk image.
rename-disk Rename volume of a disk image. rename-disk Rename volume of a disk image.
rmdir, rd Remove a directory on disk. rmdir, rd Remove a directory on disk.
unlock Unlock file(s) on a disk image. unlock Unlock file(s) on a disk image.
write Write a block or sector.
``` ```
## Info ## Info
``` ```
$ acx info --help $ acx info --help
Usage: acx info [-h] <paths>... Usage: acx info [-h] -d=<disk>
Show information on a disk image(s). Show information on a disk image(s).
Parameters:
<paths>... Image(s) to process.
Options: Options:
-h, --help Show help for subcommand. -d, --disk=<disk> Image to process [$ACX_DISK_NAME].
-h, --help Show help for subcommand.
``` ```
``` ```
@ -110,16 +114,14 @@ Sectors On Disk: 16
``` ```
$ acx list --help $ acx list --help
Usage: acx list [-hr] [--[no-]column] [--deleted] [--[no-]footer] [--[no-] Usage: acx list [-hr] [--[no-]column] [--deleted] [--[no-]footer] [--[no-]
header] [--globs=<globs>[,<globs>...]]... [-n | -s | -l] header] -d=<disk> [--globs=<globs>[,<globs>...]]... [-n | -s |
[--file | --directory] <paths>... -l] [--file | --directory] [--text | --json | --csv]
List directory of disk image(s). List directory of disk image(s).
Parameters:
<paths>... Image(s) to process.
Options: Options:
--[no-]column Show column headers. --[no-]column Show column headers.
-d, --disk=<disk> Image to process [$ACX_DISK_NAME].
--deleted Show deleted files. --deleted Show deleted files.
--directory Only include directories. --directory Only include directories.
--file Only include files. --file Only include files.
@ -129,10 +131,16 @@ Options:
-h, --help Show help for subcommand. -h, --help Show help for subcommand.
--[no-]header Show header. --[no-]header Show header.
-r, --[no-]recursive Display directory recursively. -r, --[no-]recursive Display directory recursively.
File display formatting: File display formatting:
-l, --long, --detail Use long/detailed directory format. -l, --long, --detail Use long/detailed directory format.
-n, --native Use native directory format (default). -n, --native Use native directory format (default).
-s, --short, --standard Use brief directory format. -s, --short, --standard Use brief directory format.
Output format:
--csv CSV output.
--json JSON output.
--text Formatted text (default).
``` ```
``` ```