“Loop sobre a matriz de cordas” Respostas de código

Loop from Array Bash

#!/bin/bash
# declare an array called array and define 3 values
array=( one two three )
for i in "${array[@]}"
do
	echo $i
done
Tremendous Enceladus

Loop sobre a matriz de cordas

## declare an array variable
declare -a arr=("element1" "element2" "element3")

## now loop through the above array
for i in "${arr[@]}"
do
   echo "$i"
   # or do whatever with individual element of the array
done

# You can access them using echo "${arr[0]}", "${arr[1]}" also
Elegant Elk

Bash para loop string matriz

## declare an array variable
declare -a arr=("element1" "element2" "element3")

## now loop through the above array
for i in "${arr[@]}"
do
   echo "$i"
   # or do whatever with individual element of the array
done
Armandres

Faça um loop através de uma variedade de cordas em Bash

## declare an array variable
declare -a arr=("element1" "element2" "element3")

## now loop through the above array
for i in "${arr[@]}"
do
   echo "$i"
   # or do whatever with individual element of the array
done

# You can access them using echo "${arr[0]}", "${arr[1]}" also
Tremendous Enceladus

Respostas semelhantes a “Loop sobre a matriz de cordas”

Perguntas semelhantes a “Loop sobre a matriz de cordas”

Procure respostas de código populares por idioma

Procurar outros idiomas de código