#!/bin/bash declare -ai tab=(18 2 -2) echo ${tab[@]} tableau=([0]=2 [2]=4 [4]=6) echo ${tableau[@]} tb=(1 2 3 4) echo ${tb[@]} read -a t echo ${t[@]}