In Linux this can be done by something like:
alias cdwww="cd /srv/www"
In Windows there is an equivalent command called DOSKEY
, used for example like this:
doskey ls=dir $*
The above works perfectly in Windows' built-in CMD but not in Emacs shell. Emacs simply ignores it and throws an error:
'ls' is not recognized as an internal or external command, operable program or batch file
Any idea how to create aliases in Emacs for Windows?