Newer
Older
UbixOS / bin / sh / tests / parser / alias15.0
@Charlie Root Charlie Root on 16 Jan 2018 253 bytes BSD Shell
# $FreeBSD: releng/11.1/bin/sh/tests/parser/alias15.0 261192 2014-01-26 21:19:33Z jilles $

f_echoanddo() {
	printf '%s\n' "$*"
	"$@"
}

alias echoanddo='f_echoanddo '
alias alias0='echo test2'
eval 'echoanddo echo test1'
eval 'echoanddo alias0'
exit 0