dofiles-win/Documents/PowerShell/aliases.ps1

5 lines
111 B
PowerShell
Raw Normal View History

2024-02-02 22:28:57 -04:00
# Unix like pwd
if (Test-Path alias:pwd) {
Remove-Alias -Name pwd
}
Function pwd {(Get-Location).Path}