Hier das Bash Programm

#!/bin/bash

name="Vajda"
firstname="David"

if [[ "$1" == "$firstname" && "$2" == "$name" ]]
then
    echo "Das bin ich"
else
    echo "Hallo Welt"
    i=0
    while [ $i -lt 10 ]
    do
        echo "Hallo zum $(($i+1))."
        i=$(($i+1))
    done
    A=(a b c d)
    A+=(e f g h)
    for s in "${A[@]}"
    do
        echo "$s"
    done
    i=0
    while [ $i -lt 8 ]
    do
        echo "${A[$i]}"
        i=$(($i+1))
    done
    i=0
    l=$(ls)
    for s in $l
    do
        echo "$s"
        if [ $i -ge 8 ]
        then
            break
        fi
        i=$(($i+1))
    done


fi

und die Ausgabe

Hallo Welt
Hallo zum 1.
Hallo zum 2.
Hallo zum 3.
Hallo zum 4.
Hallo zum 5.
Hallo zum 6.
Hallo zum 7.
Hallo zum 8.
Hallo zum 9.
Hallo zum 10.
a
b
c
d
e
f
g
h
a
b
c
d
e
f
g
h
alsapulseaudio.txt
bash20240915.out
bash20240915.sh
bash20240916.out
bash20240916.sh
Bilder
bin20240915.txt
binary2
binary20240907.txt
Das bin ich