PowerShell/Scripts/list-formatted.ps1

32 lines
907 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) {
2021-04-18 17:29:25 +02:00
$Name = $Item.Name
if ($Name[0] -eq '.') { continue } # hidden file/dir
if ($Item.Mode -like "d*") { $Icon = "📂"
} elseif ($Name -like "*.iso") { $Icon = "📀"
} elseif ($Name -like "*.mp3") { $Icon = "🎵"
} elseif ($Name -like "*.epub") { $Icon = "📓"
} else { $Icon = "📄" }
new-object PSObject -Property @{ Name = "$Icon$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
}