This is a chocolatey package for the public community repo for MS CoreUtils
Unix CoreUtils from CoreUtils is a modern implementation of the GNU Utils in Rust rather than the original C based CoreUtils. MS has repackaged these for compatability in MS Windows environments where possible/relevant.
It also includes findutils and grep
Also see: https://learn.microsoft.com/en-us/windows/core-utils/overview
This nupkg creation runs as a github action, it pulls metadata from Microsoft's winget manifest daily and pushes any new release to chocolatey via API key.
flowchart TD
A[GitHub Actions<br/>Daily Run]
--> B[update.ps1]
B --> C[Check latest<br/>Microsoft Coreutils]
C --> D{New version?}
D -->|No| E[Stop]
D -->|Yes| F[Fetch winget<br/>manifest checksum & url]
F --> G[Update nuspec<br/>+ install script]
G --> H[choco pack]
H --> I[choco push]
I --> J[Update .version]
J --> K[Choco Moderation Queue]