{"id":21586045,"url":"https://github.com/magiclen/xcompress","last_synced_at":"2025-04-09T20:06:55.046Z","repository":{"id":45972745,"uuid":"142999831","full_name":"magiclen/xcompress","owner":"magiclen","description":"XCompress is a free file archiver utility on Linux, providing multi-format archiving to and extracting from ZIP, Z, GZIP, BZIP2, LZ, XZ, LZMA, 7ZIP, TAR, RAR and ZSTD.","archived":false,"fork":false,"pushed_at":"2023-12-09T03:50:04.000Z","size":92,"stargazers_count":82,"open_issues_count":1,"forks_count":8,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-09T20:06:41.236Z","etag":null,"topics":["cli","compress","decompress","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/magiclen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-31T10:33:38.000Z","updated_at":"2025-02-08T13:06:08.000Z","dependencies_parsed_at":"2023-11-26T04:19:16.723Z","dependency_job_id":"48e262f7-8d21-4729-a25b-3bde19933a71","html_url":"https://github.com/magiclen/xcompress","commit_stats":{"total_commits":66,"total_committers":2,"mean_commits":33.0,"dds":"0.030303030303030276","last_synced_commit":"d99a9257435d9baf573cc4201ef79b722e340ae2"},"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magiclen%2Fxcompress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magiclen%2Fxcompress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magiclen%2Fxcompress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magiclen%2Fxcompress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/magiclen","download_url":"https://codeload.github.com/magiclen/xcompress/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248103872,"owners_count":21048245,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","compress","decompress","rust"],"created_at":"2024-11-24T15:12:29.886Z","updated_at":"2025-04-09T20:06:55.022Z","avatar_url":"https://github.com/magiclen.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"XCompress\n====================\n\n[![CI](https://github.com/magiclen/xcompress/actions/workflows/ci.yml/badge.svg)](https://github.com/magiclen/xcompress/actions/workflows/ci.yml)\n\nXCompress is a free file archiver utility on Linux, providing multi-format archiving to and extracting from ZIP, Z, GZIP, BZIP2, LZ, XZ, LZMA, 7ZIP, TAR, RAR and ZSTD.\n\n## Help\n\n```\nEXAMPLES:\nxcompress a foo.wav                      # Archive foo.wav to foo.rar\nxcompress a foo.wav /root/bar.txt        # Archive foo.wav and /root/bar.txt to foo.rar\nxcompress a -o /tmp/out.7z foo.wav       # Archive foo.wav to /tmp/out.7z\nxcompress a -b foo/bar                   # Archive foo/bar folder to bar.rar as small as possible\nxcompress a -f foo/bar -r 5              # Archive foo/bar folder to bar.rar as fast as possible and add 5% recovery record\nxcompress a -p password foo.wav          # Archive foo.wav to foo.rar with a password\nxcompress x foo.rar                      # Extract foo.rar into current working directory\nxcompress x foo.tar.gz /tmp/out_folder   # Extract foo.tar.gz into /tmp/out_folder\nxcompress x -p password foo.rar          # Extract foo.rar with a password into current working directory\n\nUsage: xcompress [OPTIONS] \u003cCOMMAND\u003e\n\nCommands:\n  x     Extract files with full path\n  a     Add files to archive. Excludes base directory from names (e.g. add /path/to/folder, you can always get the \"folder\" in the root of the archive file, instead of /path/to/folder)\n  help  Print this message or the help of the given subcommand(s)\n\nOptions:\n  -q, --quiet                          Make programs not print anything on the screen\n  -s, --single-thread                  Use only one thread\n  -p, --password [\u003cPASSWORD\u003e]          Set password for your archive file. (Only supports 7Z, ZIP and RAR) Set an empty string to read a password from stdin\n      --compress-path \u003cCOMPRESS_PATH\u003e  Specify the path of your compress executable binary file [default: compress]\n      --zip-path \u003cZIP_PATH\u003e            Specify the path of your zip executable binary file [default: zip]\n      --unzip-path \u003cUNZIP_PATH\u003e        Specify the path of your unzip executable binary file [default: unzip]\n      --gzip-path \u003cGZIP_PATH\u003e          Specify the path of your gzip executable binary file [default: gzip]\n      --gnuzip-path \u003cGNUZIP_PATH\u003e      Specify the path of your gunzip executable binary file [default: gunzip]\n      --pigz-path \u003cPIGZ_PATH\u003e          Specify the path of your pigz executable binary file [default: pigz]\n      --bzip2-path \u003cBZIP2_PATH\u003e        Specify the path of your bzip2 executable binary file [default: bzip2]\n      --bunzip2-path \u003cBUNZIP2_PATH\u003e    Specify the path of your bunzip2 executable binary file [default: bunzip2]\n      --lbzip2-path \u003cLBZIP2_PATH\u003e      Specify the path of your lbzip2 executable binary file [default: lbzip2]\n      --pbzip2-path \u003cPBZIP2_PATH\u003e      Specify the path of your pbzip2 executable binary file [default: pbzip2]\n      --lzip-path \u003cLZIP_PATH\u003e          Specify the path of your lzip executable binary file [default: lzip]\n      --lunzip-path \u003cLUNZIP_PATH\u003e      Specify the path of your lunzip executable binary file [default: lunzip]\n      --plzip-path \u003cPLZIP_PATH\u003e        Specify the path of your plzip executable binary file [default: plzip]\n      --xz-path \u003cXZ_PATH\u003e              Specify the path of your xz executable binary file [default: xz]\n      --unxz-path \u003cUNXZ_PATH\u003e          Specify the path of your unxz executable binary file [default: unxz]\n      --pxz-path \u003cPXZ_PATH\u003e            Specify the path of your pxz executable binary file [default: pxz]\n      --lzma-path \u003cLZMA_PATH\u003e          Specify the path of your lzma executable binary file [default: lzma]\n      --unlzma-path \u003cUNLZMA_PATH\u003e      Specify the path of your unlzma executable binary file [default: unlzma]\n      --7z-path \u003c7z-path\u003e              Specify the path of your 7z executable binary file [default: 7z]\n      --tar-path \u003cTAR_PATH\u003e            Specify the path of your tar executable binary file [default: tar]\n      --rar-path \u003cRAR_PATH\u003e            Specify the path of your rar executable binary file [default: rar]\n      --unrar-path \u003cUNRAR_PATH\u003e        Specify the path of your unrar executable binary file [default: unrar]\n      --zstd-path \u003cZSTD_PATH\u003e          Specify the path of your zstd executable binary file [default: zstd]\n      --unzstd-path \u003cUNZSTD_PATH\u003e      Specify the path of your unzstd executable binary file [default: unzstd]\n      --pzstd-path \u003cPZSTD_PATH\u003e        Specify the path of your pzstd executable binary file [default: pzstd]\n  -h, --help                           Print help\n  -V, --version                        Print version\n```\n\n## License\n\n[MIT](LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagiclen%2Fxcompress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmagiclen%2Fxcompress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagiclen%2Fxcompress/lists"}