Quantcast
Channel: Take Command / TCC
Viewing all articles
Browse latest Browse all 1743

Wildcard Display of Alias Definitions

$
0
0
I have encountered problems when trying to display all matching alias definitions using '' when one of the aliases has '' in its name. For example, consider the following aliases

zz=zza
zz*a=echo this is alias zza
zz*b=echo this is alias zzb

Notice that the following displays only the first alias that literally matches "zz*".

Code:
TCC(34.00.12): C:\temp>alias zz*
echo this is alias zza

Inserting a '?' character solves the problem.

Code:
TCC(34.00.12): C:\temp>alias zz?*
zz=zza...

Read more

Viewing all articles
Browse latest Browse all 1743

Trending Articles