“Bash Itereration über eine Liste” Code-Antworten

Schleife von 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

Bash for Loop String Array

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

Bash Itereration über eine Liste

#!/bin/bash
StringVal="Welcome to linux"

for val in $StringVal; do
    echo $val
done

# Output: 
# Welcome
# to
# linux
Determined Dormouse

Ähnliche Antworten wie “Bash Itereration über eine Liste”

Fragen ähnlich wie “Bash Itereration über eine Liste”

Weitere verwandte Antworten zu “Bash Itereration über eine Liste” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen