“Список 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

mkdir dir1
ls
dir1
Hello There

Ответы похожие на “Список BASH”

Вопросы похожие на “Список BASH”

Больше похожих ответов на “Список BASH” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования