Readme.md aktualisiert.

This commit is contained in:
2025-11-21 11:22:28 +01:00
parent 815a66d808
commit 0939c771f3
13 changed files with 215 additions and 0 deletions

12
teil24/slice.sh Executable file
View File

@@ -0,0 +1,12 @@
#! /usr/bin/bash
# Datei slice.sh
family=("Marge" "Homer" "Bart" "Lisa" "Maggie" "Abe" "Herb" "Patty" "Selma")
echo "family=${family[@]}"
parents=${family[@]:0:2}
kids=${family[@]:2:2}
echo "Eltern: ${parents[@]}"
echo "Kinder: ${kids[@]}"