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

17
teil24/access.sh Executable file
View File

@@ -0,0 +1,17 @@
#! /usr/bin/bash
# File: access.sh
# Array of numbers
fib=(0 1 2 3 5 8)
#Array of Strings
family=("Marge","Homer","Bart","Lisa","Maggie")
# outputs only element 0
echo "fib=${fib}"
# output the whole array
echo "fib=${fib[@]}"
#output element by index
echo "fib[4]=${fib[4]}"