freebsd-skq/bin/sh/tests/invocation/sh-fca1.0
jilles ef8ca7bad4 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
167 B
Plaintext

# $FreeBSD$
# Test that attached options before and after c are processed
case `${SH} -fca 'echo $-:$-:$0:$@' foo -bar` in
*f*:*a*:foo:-bar) true ;;
*) false ;;
esac