Categorygithub.com/medtune/go-archive
modulepackage
0.1.0
Repository: https://github.com/medtune/go-archive.git
Documentation: pkg.go.dev

# README

go-archive

CircleCI

Go tool for creating and reading archive files.

latest release 0.1.0

Install

Get with go command

go get -u github.com/medtune/go-archive/...

Usage

Usage: archiver <flags> <subcommand> <subcommand args>

Subcommands:
	commands         list all command names
	compress         compress a file
	decompress       decompress a file
	flags            describe all known top-level flags
	help             describe subcommands and their syntax


Use "compress flags" for a list of top-level flags
exit status 2

Subcommands

Decompress
archiver decompress [-t archive type] [-d destination] somefile:
    decompress somefile to wanted kind (zip by default).
    -d string
    	destination
    -t string
    	archive type (default "zip")
Compress
archiver compress [-d destination] [-k archive type] somefile:
    compress somefile to wanted kind (zip by default).
    -t string
    	archive type (default "zip")

TODO

  • archiver commmand
  • zip support
  • support concurent Compress/Decompress mechanics
  • tar support
  • gzib support

# Packages

No description provided by the author

# Functions

Pick one archiver for kind.

# Constants

No description provided by the author

# Variables

Zip default instance.

# Interfaces

Archiver as defined.