1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-05-01 11:10:50 +02:00

Update bash-de.html.markdown

Variable was not initialised in this stage for this loop - Removed the $
This commit is contained in:
Fake4d 2018-07-03 16:16:17 +02:00 committed by GitHub
parent a5f04d7e53
commit e42e4b9b22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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