mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
32 lines
795 B
PowerShell
Executable File
32 lines
795 B
PowerShell
Executable File
#!/usr/bin/pwsh
|
|
<#
|
|
.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($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: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|