Re: Aufgaben und Übungen,

######
array.sh
######
Super
Sache
ist
das
aber
auch
das
Super
Sache
ist
das
aber
auch
das
######
cond.sh
######
Das wissen wir nicht
######
hallo.sh
######
Hallo Welt
######
while.sh
######
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.
######
cond.sh
######
Das bin ich
######
cond.sh
######
Das koennte ich sein
######
cond.sh
######
Das wissen wir nicht

#!/bin/bash

if [ -f out.txt ]
then
    rm out.txt
fi

l=\$(ls *.sh)

for s in \$l
do
    if [[ "\$s" != "exec.sh" \&\& "\$s" != "all.sh" ]]
    then
        echo "######" >> out.txt
        echo "\$s" >> out.txt
        echo "######" >> out.txt
        /bin/bash "\$s" >> out.txt
    fi
done

s="cond.sh"

echo "######" >> out.txt
echo "\$s" >> out.txt
echo "######" >> out.txt
/bin/bash "\$s" "David" "Vajda" >> out.txt

echo "######" >> out.txt
echo "\$s" >> out.txt
echo "######" >> out.txt
/bin/bash "\$s" "David" >> out.txt

echo "######" >> out.txt
echo "\$s" >> out.txt
echo "######" >> out.txt
/bin/bash "\$s" "Alfonso" >> out.txt

#!/bin/bash

a=(Super Sache ist das)
a+=´(aber auch das)

for s in "\${a[@]}"
do
    echo "\$s"
done

i=0
while [ \$i -lt 7 ]
do
    echo "\${a[\$i]}"
    i=\$((\$i+1))
done

#!/bin/bash

if [ "\$1" == "David" ]  \&\&  [ "\$2" == "Vajda"  ]
#if [ "\$1" == "David Vajda" ]
then
    echo "Das bin ich"
elif [ "\$1" == "David" ]
then
    echo "Das koennte ich sein"
else
    echo "Das wissen wir nicht"
fi

#!/bin/bash

l=\$(ls)

for s in \$l
do
    echo "\$l"
done

#!/bin/bash

echo "Hallo Welt"

#!/bin/bash

i=0

while [ \$i -lt 10 ]
do
    echo "Hallo zum \$((\$i+1))."
    i=\$((\$i+1))
done