Re: Bash Excersize

#!/bin/bash

a=(Hallo dies sagt David Vajda)
a+=( dies sagt David Vajda auch)

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

i=0
while [ \$i -lt 10 ]
do
    echo "\${a[\$i]}"
    i=\$((\$i + 1))
done
#!/bin/bash

i=0



catrec() {
    cd "/var/www/html/sql-exrs/\$1"
    i=\$(( \$i+1 ))
    l=\$(ls)
    for x in \$l
    do
        if [ -d \$x ]
        then
            catrec \$x
        else
            cat \$x >> "/home/david/catout\$i.txt"
        fi
    done
    cd ..
}

catrec "./."
#!/bin/bash

l=\$(ls)

for x in \$l
do
    echo \$x
done
#!/bin/bash

read -p "Name: " name

if [ "\$name" == "David Vajda" ]
then
    echo "Dann sind sie ich"
elif [ "\$name" == "Tux" ]
then
    echo "Dann benutzen sie wahrscheinlich auch Linux"
else
    echo "Sie sind nicht David Vajda und Linux benutzen sie entweder nicht oder sind bescheiden und wissenschaftlich und sagen nicht gleich "tux""
fi
#!/bin/bash

read -p "Name: " name
echo "\$name"
#!/bin/bash

# Dies ist die Shebang

echo "#!/bin/bash"
#!/bin/bash

var1=Hallo
var2="Hallo Welt"

echo \$var1
echo \$var2

unset var1
unset var2

hallololo=Hallo
hallo=Hallo

echo "\${hallo}lolo"
#!/bin/bash

i=0

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