“Pętla przez szereg strun w Bash” Kod odpowiedzi

pętla nad szeregiem sznurków

## 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 for Loop String macierz

## 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

Pętla przez szereg strun w 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

Odpowiedzi podobne do “Pętla przez szereg strun w Bash”

Pytania podobne do “Pętla przez szereg strun w Bash”

Więcej pokrewnych odpowiedzi na “Pętla przez szereg strun w Bash” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu