summaryrefslogtreecommitdiffhomepage
path: root/de-de
diff options
context:
space:
mode:
authorFake4d <Fake4d@users.noreply.github.com>2018-07-03 16:16:17 +0200
committerGitHub <noreply@github.com>2018-07-03 16:16:17 +0200
commite42e4b9b22d6d1e267d5c5931dd40f050401ba44 (patch)
tree821bc786fe98fc579e911bf660b91dfce83e1ec2 /de-de
parenta5f04d7e5350274a68bcec7361e4b7beefcf7829 (diff)
Update bash-de.html.markdown
Variable was not initialised in this stage for this loop - Removed the $
Diffstat (limited to 'de-de')
-rw-r--r--de-de/bash-de.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/de-de/bash-de.html.markdown b/de-de/bash-de.html.markdown
index 7928b136..7a0db157 100644
--- a/de-de/bash-de.html.markdown
+++ b/de-de/bash-de.html.markdown
@@ -180,7 +180,7 @@ esac
# 'for' Schleifen iterieren über die angegebene Zahl von Argumenten:
# Der Inhalt von $Variable wird dreimal ausgedruckt.
-for $Variable in {1..3}
+for Variable in {1..3}
do
echo "$Variable"
done