From fd87dfd30a5cb37147b63af7530b61ab2ede77de Mon Sep 17 00:00:00 2001 From: Charlie Arehart Date: Sun, 9 Aug 2026 17:38:55 -0500 Subject: [PATCH] Document in README how to list available commands Added section showing how to use coreutils-manager to list the available Coreutils commands. It's not obvious that one could this. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 568058b..d96feff 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,13 @@ Or grab the latest build from our [Release Page](https://github.com/microsoft/co
+## Listing available commands + +To see the commands made available via Coreutils, use: +```powershell +coreutils-manager.exe status +``` + ## Creating custom alias * PowerShell: Set-Alias ll 'ls' or a function in your $PROFILE for arguments, e.g. `function ll { ls -la --color=auto @args }`