آرایه ها در bash
دوشنبه, ۳۰ مرداد ۱۳۹۶، ۰۹:۴۶ ق.ظ
ARRAY=(test) # initialize array
ARRAY+=('foo') # append 'foo'
ARRAY+=('bar') # append 'bar'
for a in ${ARRAY[*]}; do # walking in the ARRAY
echo $a
done
- ۹۶/۰۵/۳۰
ARRAY=(test) # initialize array
ARRAY+=('foo') # append 'foo'
ARRAY+=('bar') # append 'bar'
for a in ${ARRAY[*]}; do # walking in the ARRAY
echo $a
done