summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2018-09-08 17:28:00 +0530
committerGitHub <noreply@github.com>2018-09-08 17:28:00 +0530
commit9136fb9a753946daef55fd527c05e2904347a495 (patch)
tree5566f51a6cfba333d6e4b1b9c54d42d81bc63cb3
parentd27199d0012866f0b7da8ffeca9a7f10dc284c25 (diff)
parente42e4b9b22d6d1e267d5c5931dd40f050401ba44 (diff)
Merge pull request #3151 from Fake4d/patch-1
[bash/de] Update 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