diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-09-08 17:28:00 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-08 17:28:00 +0530 |
commit | 9136fb9a753946daef55fd527c05e2904347a495 (patch) | |
tree | 5566f51a6cfba333d6e4b1b9c54d42d81bc63cb3 /de-de | |
parent | d27199d0012866f0b7da8ffeca9a7f10dc284c25 (diff) | |
parent | e42e4b9b22d6d1e267d5c5931dd40f050401ba44 (diff) |
Merge pull request #3151 from Fake4d/patch-1
[bash/de] Update bash-de.html.markdown
Diffstat (limited to 'de-de')
-rw-r--r-- | de-de/bash-de.html.markdown | 2 |
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 |