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

7 lines
112 B
PowerShell
Raw Normal View History

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