From 7d989a061970b911b4ea2be6b212ae62dafaf34a Mon Sep 17 00:00:00 2001 From: Olli Graf Date: Sat, 6 Jul 2024 15:59:24 +0200 Subject: [PATCH] simplevar.sh, unset.sh und concat.sh --- teil10/concat.sh | 6 ++++++ teil10/simplevar.sh | 4 ++++ teil10/unset.sh | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 teil10/concat.sh create mode 100644 teil10/simplevar.sh create mode 100644 teil10/unset.sh 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