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

14
teil24/declare.sh Executable file
View File

@@ -0,0 +1,14 @@
#! /usr/bin/bash
# File: declare.sh
declare -a sbc
sbc[0]="Raspberry Pi"
echo "Länge sbc: ${#sbc[@]}"
echo "sbc=${sbc[@]}"
sbc[1]="Orange Pi"
echo "Länge sbc: ${#sbc[@]}"
echo "sbc=${sbc[@]}"
sbc[2]="Banana Pi"
echo "Länge sbc: ${#sbc[@]}"
echo "sbc=${sbc[@]}"