freebsd-dev/bin/sh/tests/parser/alias12.0
Jilles Tjoelker 03e55809f4 sh: Add tests for alias names after another alias.
Since the first alias's value does not end with a blank, the next word
should not be checked for aliases.
2014-01-25 14:59:08 +00:00

7 lines
86 B
Plaintext

# $FreeBSD$
unalias -a
alias alias0=command
alias true='echo bad'
eval 'alias0 true'