freebsd-nq/bin/sh/tests/invocation/sh-ca1.0
Jilles Tjoelker 2cc32af06f sh: Add tests for sh -c that already pass.
PR:		220587
Submitted by:	Ryan Moeller
2017-08-12 19:17:48 +00:00

8 lines
135 B
Plaintext

# $FreeBSD$
# Test that attached options after c are processed
case `${SH} -ca 'echo $-:$0' moo` in
*a*:moo) true ;;
*) false ;;
esac