aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/parser/alias16.0
blob: b55121657eff69e39c4cbcfe40629c29095d8043 (plain) (blame)
1
2
3
4
5
6
7
# $FreeBSD: head/bin/sh/tests/parser/alias16.0 316646 2017-04-08 21:57:59Z jilles $

v=1
alias a='unalias a
v=2'
eval a
[ "$v" = 2 ]