Prettier Get-ChildItem replacement and ability to display lists of objects in columns
ShowColumns
provides prettier Get-ChildItem
replacement and ability to display lists of objects in columns.
Available cmdlets are:
Show-Columns
- displays any data piped into it in columns with auto-calculated widths.Show-ChildItemColumns
- invokes Get-ChildItem
with given parameters and displays results using Show-Columns
.Install module from PowerShell Gallery:
Install-Module ShowColumns -Scope CurrentUser
Then import module in your PowerShell profile and overwrite ls
alias:
Import-Module ShowColumns
Set-Alias ls Show-ChildItemColumns -Option AllScope
Get-ChildItem
cmdlet for convenient useSee docs/ShowColumns.md for module documentation.