“anexo de la matriz bash” Código de respuesta

Bash agregando a la matriz

#!/bin/bash

#Making an array
array=(1 2 3)

#Appending the array
array+=(4)

#Printing the array
echo ${array[@]}
Faithful Fish

anexo de la matriz bash

for i in $(seq 2.5 .1 5);
do
    # Print the value
    echo $i " ########";
    arrVar+=($i) # appending 

done

# Iterate the loop to read and print each array element
for value in "${arrVar[@]}"
do
     echo $value
done

other ways : https://linuxhint.com/bash_append_array/


2.5
2.6
2.7
2.8
2.9
Hutch Polecat

Respuestas similares a “anexo de la matriz bash”

Preguntas similares a “anexo de la matriz bash”

Más respuestas relacionadas con “anexo de la matriz bash” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código