aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/parser/alias17.0
blob: fd233ef8e9597aea9b28c343343e8c63acd367db (plain) (blame)
1
2
3
4
5
6
7
# $FreeBSD: head/bin/sh/tests/parser/alias17.0 317037 2017-04-16 21:42:43Z jilles $

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