]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/parameters/ifs1.0
shell_cmds-216.60.1.tar.gz
[apple/shell_cmds.git] / sh / tests / parameters / ifs1.0
1 # $FreeBSD: head/bin/sh/tests/parameters/ifs1.0 306843 2016-10-08 13:40:12Z jilles $
2
3 env IFS=_ ${SH} -c '
4 rc=2
5 nosuchtool_function() {
6 rc=0
7 }
8 v=nosuchtool_function
9 $v && exit "$rc"
10 '