mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
21 lines
344 B
PowerShell
Executable File
21 lines
344 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
list-aliases.ps1
|
|
.DESCRIPTION
|
|
Lists all PowerShell aliases.
|
|
.EXAMPLE
|
|
PS> .\list-aliases.ps1
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
try {
|
|
get-alias
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|