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

7 lines
112 B
PowerShell

function cd-{cd -}
function cd..{cd ..}
function cd...{cd ../..}
Set-Alias '..' 'cd..'
Set-Alias '...' 'cd...'