# File lib/archive/tar/minitar/command.rb, line 596
596:     def help
597:       help = "minitar extract [OPTIONS] <tarfile|-> [<file>+]\n\nExtracts files from an existing tarfile. If the tarfile is named .tar.gz\nor .tgz, then it will be uncompressed automatically. If the tarfile is\n\"-\", then it will be read from standard input (stdin) so that minitar\nmay be piped.\n\nThe files or directories that will be extracted from the tarfile are\nspecified after the name of the tarfile itself. Directories will be\nprocessed recursively. Files must be specified in full. A file\n\"foo/bar/baz.txt\" cannot simply be specified by specifying \"baz.txt\".\nAny file not found will simply be skipped and an error will be reported.\n\nextract Options:\n--uncompress, -z  Uncompresses the tarfile with gzip.\n--pipe            Emits the extracted files to STDOUT for piping.\n--output, -o      Extracts the files to the specified directory.\n\n"
598:     end