diff --git a/teil10/concat.sh b/teil10/concat.sh new file mode 100644 index 0000000..8d07124 --- /dev/null +++ b/teil10/concat.sh @@ -0,0 +1,6 @@ +# concat.sh +text="Inhalt" + +text="Neuer ${text}" + +echo "text=${text}" diff --git a/teil10/simplevar.sh b/teil10/simplevar.sh new file mode 100644 index 0000000..abc4096 --- /dev/null +++ b/teil10/simplevar.sh @@ -0,0 +1,4 @@ +# simplevar.sh +text="Inhalt" + +echo "text=${text}" diff --git a/teil10/unset.sh b/teil10/unset.sh new file mode 100644 index 0000000..98af189 --- /dev/null +++ b/teil10/unset.sh @@ -0,0 +1,5 @@ +# unset.sh +text="Inhalt" + +echo "text=${text}" +unset text