summary refs log tree commit diff
path: root/bin/cash/tests/expansion/length6.0
blob: bef0d7bc298a57eebd1e88c41ec55d75ab3bd0ef (plain) (blame)
1
2
3
4
5
6
7
8
# $FreeBSD: releng/12.0/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