]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - bin/sh/tests/parser/alias15.0
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / bin / sh / tests / parser / alias15.0
1 # $FreeBSD$
2
3 f_echoanddo() {
4         printf '%s\n' "$*"
5         "$@"
6 }
7
8 alias echoanddo='f_echoanddo '
9 alias alias0='echo test2'
10 eval 'echoanddo echo test1'
11 eval 'echoanddo alias0'
12 exit 0