PowerDir is a PowerShell 7.2 Cmdlet as alternative to Get-ChildItem.
| Build | Windows | Linux | MacOS |
|---|---|---|---|
| Debug | |||
| Release |
At the moment only Windows is fully supported, but still compatible where .NET6.0 can be run.
| Code Coverage | Powershell Gallery |
|---|---|
![]() |
Edit $Profile and add the following aliases
function dd() { Get-PowerDir -d ld @args }
function dw() { Get-PowerDir -d w @args }
function l() { Get-PowerDir -d l @args }or if you prefer in a Powershell way
function dd() { Get-PowerDir @args | ft }
function dw() { Get-PowerDir @args | fw }
function l() { Get-PowerDir @args | fl }Install it from Powershell Gallery
C:\ PS> Install-Module -Name PowerDir.GetPowerDirAt the moment the module is not signed.
Open an issue on GitHub or send a message in Powershell gallery
- v0.1: publishing test, basic functionalities almost complete
- v0.2: basic functionalities, themes
- v0.3: using escape codes
- v0.4: globbing search / advanced search patterns
