On Linux
alias cdt=\'cd /usr/a\'
make a alias that when I type
cdt
I change the workpath to /use/a
Aliases can't use parameters, so define a function instead.
function cdt { set-location "F:\a" }