From f7f206df3be38a5417900d0a547aac59cf9022b0 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sat, 27 Feb 2021 11:19:57 +0100 Subject: [PATCH] Added list-aliases.ps1 --- Data/scripts.csv | 1 + README.md | 1 + Scripts/list-aliases.ps1 | 15 +++++++++++++++ Scripts/my-profile.ps1 | 8 +++++++- 4 files changed, 24 insertions(+), 1 deletion(-) create mode 100755 Scripts/list-aliases.ps1 diff --git a/Data/scripts.csv b/Data/scripts.csv index 16e266d3..5bbd0c17 100644 --- a/Data/scripts.csv +++ b/Data/scripts.csv @@ -36,6 +36,7 @@ go-music.ps1, go to the user's music folder go-scripts.ps1, go to the PowerShell Scripts folder hibernate.ps1, enables hibernate mode for the local computer (requires admin rights) inspect-exe.ps1, prints basic information of the given executable file +list-aliases.ps1, lists all PowerShell aliases list-anagrams.ps1, lists all anagrams of the given word list-automatic-variables.ps1, lists the automatic variables of PowerShell list-current-timezone.ps1, lists the current time zone details diff --git a/README.md b/README.md index 2034313d..105aac68 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,7 @@ Scripts for Git 📝 Scripts for PowerShell 🔎 ------------------------ * [daily-tasks.sh](Scripts/daily-tasks.sh) - execute PowerShell scripts automatically as daily tasks (Linux only) +* [list-aliases.ps1](Scripts/list-aliases.ps1) - lists all PowerShell aliases * [list-automatic-variables.ps1](Scripts/list-automatic-variables.ps1) - lists the automatic variables of PowerShell * [list-cmdlets.ps1](Scripts/list-cmdlets.ps1) - lists the PowerShell cmdlets * [list-modules.ps1](Scripts/list-modules.ps1) - lists the PowerShell modules diff --git a/Scripts/list-aliases.ps1 b/Scripts/list-aliases.ps1 new file mode 100755 index 00000000..43f009d7 --- /dev/null +++ b/Scripts/list-aliases.ps1 @@ -0,0 +1,15 @@ +#!/bin/powershell +<# +.SYNTAX ./list-aliases.ps1 +.DESCRIPTION lists all PowerShell aliases +.LINK https://github.com/fleschutz/PowerShell +.NOTES Author: Markus Fleschutz / License: CC0 +#> + +try { + get-alias + exit 0 +} catch { + write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" + exit 1 +} diff --git a/Scripts/my-profile.ps1 b/Scripts/my-profile.ps1 index 714cbfe9..194d4d80 100755 --- a/Scripts/my-profile.ps1 +++ b/Scripts/my-profile.ps1 @@ -1,5 +1,11 @@ +# Personal PowerShell Profile +# --------------------------- +# comment/uncomment/adapt as you like + #function prompt {$null} # PS> #function prompt { "$ " } # $ -function prompt { "$(Get-Location)\> " } # C:\ +function prompt { "$(Get-Location)> " } # C:\> + +set-alias -name lsf -value get-childitem # lsf means list formatted