Sort by

recency

|

154 Discussions

|

  • + 0 comments
    i=0
    while read s
    do
        country[$i]=$s
        ((i++))
    done
    
    echo ${country[@]}
    
  • + 0 comments

    while read line; do

    arreglo+=`$(echo "$`line ")
    

    done

    echo ${arreglo[@]}

  • + 0 comments

    readarray list

    echo ${list[@]}

  • + 0 comments
    declare -a array=()
    
    while read r; do
        array=("${array[@]}" "$r")
    done
    echo ${array[@]}
    
  • + 1 comment

    or just xargs