“Bash -Array” 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 -Arrays

#!/bin/bash

a=()
b=("reason" "logic" "aspect" "ethic")
echo ${b[2]}
agentTequila

Bash -Array

ss="abcdefghi"
my_array=( `echo $ss | grep -o . ` ) # split word into array

echo ${my_array[2]} 
give c

i=0
echo ${my_array[$i]}${my_array[$i+1]}xxx
give : abxxx
Hutch Polecat

Ähnliche Antworten wie “Bash -Array”

Fragen ähnlich wie “Bash -Array”

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

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen