mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
24 lines
256 B
Plaintext
24 lines
256 B
Plaintext
%prep
|
|
alias foo=echo
|
|
|
|
alias -g bar=echo
|
|
|
|
alias '\bar=echo'
|
|
|
|
%test
|
|
foo foo
|
|
0:Basic aliasing
|
|
>foo
|
|
|
|
bar bar
|
|
0:Global aliasing
|
|
>echo
|
|
|
|
\foo foo
|
|
127:Not aliasing
|
|
?ZTST_execchunk:1: command not found: foo
|
|
|
|
\bar \bar
|
|
0:Aliasing with a backslash
|
|
>bar
|