aboutsummaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/expansion/length6.0
blob: 8da2da80225fc0936777b15091bde678073f0fe4 (plain) (blame)
1
2
3
4
5
6
7
8
# $FreeBSD: head/bin/sh/tests/expansion/length6.0 220903 2011-04-20 22:24:54Z jilles $

x='!@#$%^&*()[]'
[ ${#x} = 12 ] || echo bad 1
[ "${#x}" = 12 ] || echo bad 2
IFS=2
[ ${#x} = 1 ] || echo bad 3
[ "${#x}" = 12 ] || echo bad 4