If you put an asterisk (*) immediately before a command in the value of an alias definition then TCC will not interpret that command as another alias. So you can do things like:
alias dir=*dir /w
to amend the default behaviour of internal commands. Also, if at any time you need to run the internal command from the prompt, it's easy to override the alias by placing an asterisk in front of the command name.
I'd like to be able to do the same thing with library functions; I think the use of...
Read more
alias dir=*dir /w
to amend the default behaviour of internal commands. Also, if at any time you need to run the internal command from the prompt, it's easy to override the alias by placing an asterisk in front of the command name.
I'd like to be able to do the same thing with library functions; I think the use of...
Read more