11 lines
183 B
Bash
Executable File
11 lines
183 B
Bash
Executable File
#! /usr/bin/bash
|
|
# File: create.sh
|
|
|
|
a1=(0 1 2 3 4)
|
|
family=("Marge" "Homer" "Bart" "Lisa" "Maggie")
|
|
|
|
echo "a1=${a1[@]}"
|
|
echo "family=${family[@]}"
|
|
echo "Länge family: ${#family[@]}"
|
|
|