diff options
author | Fake4d <Fake4d@users.noreply.github.com> | 2018-07-03 16:16:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-03 16:16:17 +0200 |
commit | e42e4b9b22d6d1e267d5c5931dd40f050401ba44 (patch) | |
tree | 821bc786fe98fc579e911bf660b91dfce83e1ec2 | |
parent | a5f04d7e5350274a68bcec7361e4b7beefcf7829 (diff) |
Update bash-de.html.markdown
Variable was not initialised in this stage for this loop - Removed the $
-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 |