h28912
s 00019/00000/00000
d D 1.1 98/07/16 11:21:12 mark 1 0
c date and time created 98/07/16 11:21:12 by mark
e
u
U
f e 0
t
T
I 1
set -A NAMES alex helen jenny scott
echo $NAMES
echo ${NAMES[2]}
echo ${NAMES[*]}
#echo ${NAMES[2,-2]}

set -A A "${NAMES[*]}"
set -A B "${NAMES[@]}"
set | head -5
NAMES[4]=william
echo ${NAMES[*]}
echo $A[1]
echo $A[2,7]
A[6,10="alice"
echo ${NAMES[*]}

echo $A
echo $#A
echo $A[2]
E 1
