1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 12:00:34 +02:00

Fixed de translations

This commit is contained in:
Adam
2013-08-20 08:58:01 -07:00
parent fc2757a87f
commit 598fe61e1a
2 changed files with 13 additions and 2 deletions

View File

@@ -1,4 +1,14 @@
#!/bin/sh
---
language: bash
contributors:
- ["Jake Prather", "http:#github.com/JakeHP"]
- ["kultprok", "http://www.kulturproktologie.de"]
filename: LearnBash-de.bash
lang: de-de
---
```bash
#!/bin/sh
# Die erste Zeile des Scripts nennt sich Shebang in gibt dem System an, wie
# wie das Script ausgeführt werden soll: http://de.wikipedia.org/wiki/Shebang
# Du hast es bestimmt schon mitgekriegt, Kommentare fangen mit # an. Das Shebang ist auch ein Kommentar
@@ -71,3 +81,4 @@ for $VARIABLE in x y z
do
echo "$VARIABLE"
done
```

View File

@@ -4,7 +4,7 @@ tool: git
contributors:
- ["Jake Prather", "http:#github.com/JakeHP"]
- ["kultprok", "http://www.kulturproktologie.de"]
filename: LearnGit.txt
filename: LearnGit-de.txt
lang: de-de
---