1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-09 08:16:58 +02:00

Merge pull request #3151 from Fake4d/patch-1

[bash/de] Update bash-de.html.markdown
This commit is contained in:
Divay Prakash
2018-09-08 17:28:00 +05:30
committed by GitHub

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