Winix Squeeze is a cross-platform command-line tool designed to compress and decompress files using popular algorithms such as gzip, brotli, or zstd. Built for developers and system administrators, it simplifies file compression tasks with a focus on efficiency and ease of use.
Key Features:
Supports multiple compression formats (gzip, brotli, zstd) in a single tool.
Automatically detects the compression format during decompression.
Cross-platform compatibility, running natively on Windows, Linux, and macOS.
Designed for seamless integration with existing workflows and pipelines.
Lightweight CLI interface with intuitive syntax.
Audience & Benefit:
Ideal for developers, system administrators, and DevOps engineers who need to manage file compression in a consistent manner across different platforms. Winix Squeeze streamlines file operations, reduces the need for multiple tools, and integrates seamlessly with existing scripts or CI/CD pipelines, saving time and improving efficiency.
The tool is available via winget for easy installation on Windows, ensuring quick setup and access.
README
Winix
Cross-platform CLI tools for the gaps between Windows and *nix.
Winix is a suite of small, focused command-line tools compiled to native binaries via .NET AOT. Each tool fills a gap where a standard Unix utility either doesn't exist on Windows, has no good cross-platform implementation, or where a modern take can genuinely improve on the original. Tools are designed to be composable — piping, exit codes, and structured output work the way Unix users expect — while also being readable by humans in the terminal with colour, tables, and clear error messages. Windows has powerful scripting, but many of its built-in tools produce output that's difficult to pipe, parse, or read at a glance. Every Winix tool ships as a single native binary with no runtime dependency.
Suite installer — installs and updates all tools via native package managers
Why each tool, on each platform
The biggest value is on Windows, where many of these tools simply don't exist. On Linux and macOS the tools still earn their keep by combining multiple utilities, improving defaults, or providing a consistent interface across platforms. Even where a native equivalent exists, there's value in a single set of tools that behaves identically everywhere — scripts, CI pipelines, and muscle memory transfer across platforms without adaptation.
Tool
Windows
Linux / macOS
timeit
Nothing built-in. Measure-Command exists but doesn't show memory, doesn't pass exit codes, can't be piped.
Improves on time with peak memory, machine-readable JSON, and proper exit-code passthrough.
squeeze
No native CLI for compression. Users install 3+ separate tools or reach for 7-Zip.
One tool instead of separate gzip, brotli, zstd CLIs. Auto-detects format on decompression.
peep
No watch. No entr. PowerShell loops are verbose and don't handle file-watching.
Combines watch (interval) + entr (file-change trigger) in one binary with a TUI.
wargs
No xargs. ForEach-Object is PowerShell-only and doesn't handle parallel execution or line-delimited input well.
Sane defaults over xargs: line-delimited, no -0 needed, correct quoting on all platforms.
files
No find. Get-ChildItem exists but is slow, verbose, and PowerShell-only.
Cleaner than find, with glob patterns, gitignore support, text/binary detection, and JSON output.
treex
Built-in tree is bare-bones (no colour, no sizes, no filtering).
Adds colour, size rollups, gitignore, clickable hyperlinks, and filtering over standard tree.
man
No man at all.
Alternative renderer with colour and hyperlinks. Renders groff natively — no groff install needed. Bundled pager.
less
No pager. more exists but can't scroll back, search, or handle ANSI colour.
Better defaults than system less: ANSI colour on by default, mouse scroll, follow mode.
whoholds
No built-in file-lock query. handle.exe (Sysinternals) requires a separate download + admin rights.
Wraps lsof with cleaner output, structured JSON, and a unified syntax for both files and ports.
schedule
schtasks.exe exists but is notoriously hard to script. No cron syntax.
Unified interface over crontab with the same flags and output format as Windows.
nc
No netcat. Test-NetConnection is verbose and limited.
Consistent behaviour across BSD/GNU/ncat forks. Adds TLS client support and port-range checking.
Download native binaries from GitHub Releases.
Available for Windows (x64), Linux (x64), and macOS (x64, ARM64). Windows binaries are Authenticode-signed.
Quick Start
# Time a build
timeit dotnet build
# Watch tests, re-run on file changes
peep -w "src/**/*.cs" dotnet test
# Compress with zstd
squeeze --zstd largefile.bin
# Find files and batch-process them
files src --ext cs | wargs dotnet format
# Browse a directory tree with sizes
treex --size --gitignore --no-hidden
# Read a man page on any platform
man timeit
# Find what's locking a file
whoholds myapp.dll
# Quick port check
nc -z db.internal 5432
# Schedule a recurring job (cross-platform cron)
schedule add "0 9 * * 1-5" -- backup.sh /data
# JSON output for CI
timeit --json dotnet test
# AI agent metadata
files --describe
For AI agents
Every tool supports --describe for structured JSON metadata (flags, types, examples, composability, exit codes) and --json for machine-parseable output. See llms.txt for a summary and links to per-tool AI agent guides in docs/ai/.