PowerShell_Scripts/base/profile.d/cd-shortcuts.ps1

7 lines
112 B
PowerShell
Raw Normal View History

2021-03-23 01:06:49 -04:00
function cd-{cd -}
function cd..{cd ..}
function cd...{cd ../..}
Set-Alias '..' 'cd..'
Set-Alias '...' 'cd...'