5 lines
111 B
PowerShell
5 lines
111 B
PowerShell
# Unix like pwd
|
|
if (Test-Path alias:pwd) {
|
|
Remove-Alias -Name pwd
|
|
}
|
|
Function pwd {(Get-Location).Path} |