summaryrefslogtreecommitdiffhomepage
path: root/de-de/bash-de.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'de-de/bash-de.html.markdown')
-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