“Bash -Liste” Code-Antworten

So machen Sie eine Liste Bash

#to create an array:
$ declare -a my_array
#set number of items with spaceBar seperation:
$ my_array = (item1 item2)
#set specific index item:
$ my_array[0] = item1
Patrick Star

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

mkdir dir1
ls
dir1
Hello There

Ähnliche Antworten wie “Bash -Liste”

Fragen ähnlich wie “Bash -Liste”

Weitere verwandte Antworten zu “Bash -Liste” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen