PowerShell/Scripts/list-formatted.ps1

30 lines
784 B
PowerShell
Raw Normal View History

2021-04-16 17:09:48 +02:00
#!/usr/bin/pwsh
2021-01-02 12:03:01 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX list-formatted.ps1 [<directory>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION lists the current working directory formatted in columns
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-01-02 12:03:01 +01:00
#>
param($Directory = "$PWD")
2021-01-02 12:03:01 +01:00
function ListDir { param([string]$Path)
2021-01-02 12:03:01 +01:00
$Items = get-childItem -path $Path
foreach ($Item in $Items) {
if ($Item.Name[0] -eq '.') { continue } # hidden file/dir
2021-02-06 15:16:36 +01:00
if ($Item.Mode -like "d*") {
2021-04-16 17:09:48 +02:00
new-object PSObject -Property @{ Name = "📂$($Item.Name)" }
2021-01-02 12:03:01 +01:00
} else {
2021-04-16 17:09:48 +02:00
new-object PSObject -Property @{ Name = "📄$($Item.Name)" }
2021-01-02 12:03:01 +01:00
}
}
}
try {
ListDir $Directory | format-wide -autoSize
2021-01-02 12:03:01 +01:00
exit 0
} catch {
2021-02-16 10:03:20 +01:00
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-01-02 12:03:01 +01:00
exit 1
}