PowerShell/Scripts/list-formatted.ps1
2021-02-09 19:30:45 +01:00

32 lines
795 B
PowerShell
Executable File

#!/bin/powershell
<#
.SYNTAX ./list-formatted.ps1 [<directory>]
.DESCRIPTION lists the current working directory formatted in columns
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([string]$Dir = "")
function ListDirectory { param([string]$Path)
$Items = get-childItem -path $Path
foreach ($Item in $Items) {
if ($Item.Mode -like "d*") {
New-Object PSObject -Property @{ Filename = "$($Item.Name)/" }
} else {
New-Object PSObject -Property @{ Filename = "$($Item.Name)" }
}
}
}
try {
if ($Dir -eq "") {
$Dir = "$PWD"
}
ListDirectory $Dir | format-wide -autoSize
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}