array Demos

This commit is contained in:
2025-09-07 14:15:56 +02:00
parent 96f5040dfe
commit 0d67903acf
8 changed files with 137 additions and 0 deletions

8
arrays/length.sh Executable file
View File

@@ -0,0 +1,8 @@
#! /usr/bin/bash
a1=(0 1 2 3 4 5)
family=("Marge" "Homer" "Bart" "Lisa" "Maggie")
echo "Größe family: ${#family[@]}"
echo "Größe a1: ${#a1[@]}"