“Bash Strings” Kod odpowiedzi

Jak zrobić listę listy

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

#no space between = sign and no , between values
myArray=("cat" "dog" "mouse" "frog")
Sorann

Odpowiedzi podobne do “Bash Strings”

Pytania podobne do “Bash Strings”

Więcej pokrewnych odpowiedzi na “Bash Strings” w Shell/Bash

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

Przeglądaj inne języki kodu