sh: Add some tests for aliasing a utility to itself.

This commit is contained in:
Jilles Tjoelker 2012-09-22 12:52:41 +00:00
parent 03fb709e1f
commit 01f7f6ef18
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=240825
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,4 @@
# $FreeBSD$
alias echo='echo a'
[ "`eval echo b`" = "a b" ]

View File

@ -0,0 +1,4 @@
# $FreeBSD$
alias echo='echo'
[ "`eval echo b`" = b ]