Browse Source

simplevar.sh, unset.sh und concat.sh

master
Olli Graf 3 months ago
parent
commit
7d989a0619
  1. 6
      teil10/concat.sh
  2. 4
      teil10/simplevar.sh
  3. 5
      teil10/unset.sh

6
teil10/concat.sh

@ -0,0 +1,6 @@
# concat.sh
text="Inhalt"
text="Neuer ${text}"
echo "text=${text}"

4
teil10/simplevar.sh

@ -0,0 +1,4 @@
# simplevar.sh
text="Inhalt"
echo "text=${text}"

5
teil10/unset.sh

@ -0,0 +1,5 @@
# unset.sh
text="Inhalt"
echo "text=${text}"
unset text
Loading…
Cancel
Save