diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/regression/bin/sh/builtins/hash4.0 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/regression/bin/sh/builtins/hash4.0 b/tools/regression/bin/sh/builtins/hash4.0 new file mode 100644 index 0000000..dec584c --- /dev/null +++ b/tools/regression/bin/sh/builtins/hash4.0 @@ -0,0 +1,6 @@ +# $FreeBSD$ + +exec 3>&1 +m=`hash nosuchtool 2>&1 >&3` +r=$? +[ "$r" != 0 ] && [ -n "$m" ] |