]> git.saurik.com Git - apple/shell_cmds.git/blame - sh/tests/expansion/length3.0
shell_cmds-198.tar.gz
[apple/shell_cmds.git] / sh / tests / expansion / length3.0
CommitLineData
71aad674
A
1# $FreeBSD$
2
3set -- 1 2 3 4 5 6 7 8 9 10 11 12 13
4[ "$#" = 13 ] || echo '$# wrong'
5[ "${#}" = 13 ] || echo '${#} wrong'
6[ "${##}" = 2 ] || echo '${##} wrong'
7set --
8[ "$#" = 0 ] || echo '$# wrong'
9[ "${#}" = 0 ] || echo '${#} wrong'
10[ "${##}" = 1 ] || echo '${##} wrong'