2024-01-25 13:37:12 +01:00
|
|
|
Script: *my-profile.ps1*
|
|
|
|
========================
|
2022-11-17 20:02:26 +01:00
|
|
|
|
|
|
|
my-profile.ps1
|
2021-10-17 14:33:27 +02:00
|
|
|
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Parameters
|
|
|
|
----------
|
2021-10-17 14:33:27 +02:00
|
|
|
```powershell
|
|
|
|
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Script Content
|
|
|
|
--------------
|
2022-11-17 20:05:34 +01:00
|
|
|
```powershell
|
2022-11-17 20:02:26 +01:00
|
|
|
# MY POWERSHELL PROFILE (this profile file defines the look & feel of PowerShell)
|
|
|
|
|
|
|
|
# WINDOW TITLE
|
|
|
|
if ($IsLinux) { $Username = $(whoami) } else { $Username = $env:USERNAME }
|
|
|
|
$host.ui.RawUI.WindowTitle = "$Username @ $(hostname)"
|
|
|
|
|
|
|
|
# COMMAND PROMPT
|
2024-03-27 17:36:59 +01:00
|
|
|
function prompt { Write-Host -noNewline -foregroundColor yellow "`n➤ "; return " " }
|
2022-11-17 20:02:26 +01:00
|
|
|
|
|
|
|
# ALIAS NAMES
|
|
|
|
del alias:pwd -force -errorAction SilentlyContinue
|
|
|
|
set-alias -name pwd -value list-workdir.ps1 # pwd = print working directory
|
|
|
|
set-alias -name ll -value get-childitem # ll = list folder (long format)
|
|
|
|
del alias:ls -force -errorAction SilentlyContinue
|
|
|
|
set-alias -name ls -value list-folder.ps1 # ls = list folder (short format)
|
2022-11-17 20:05:34 +01:00
|
|
|
```
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2024-03-27 17:36:59 +01:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of my-profile.ps1 as of 03/27/2024 17:36:29)*
|