summaryrefslogtreecommitdiffhomepage
path: root/de-de/bash-de.html.markdown
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2013-08-20 08:58:01 -0700
committerAdam <adam@adambard.com>2013-08-20 08:58:01 -0700
commit598fe61e1a9968eb633d97ef214b01c7d3f0d942 (patch)
tree4514786341d823bc5491f4e1e4e221e620518d3d /de-de/bash-de.html.markdown
parentfc2757a87f7f3850624069a3254ba4175a2e4aff (diff)
Fixed de translations
Diffstat (limited to 'de-de/bash-de.html.markdown')
-rw-r--r--de-de/bash-de.html.markdown13
1 files changed, 12 insertions, 1 deletions
diff --git a/de-de/bash-de.html.markdown b/de-de/bash-de.html.markdown
index c9cf3e78..f2a57511 100644
--- a/de-de/bash-de.html.markdown
+++ b/de-de/bash-de.html.markdown
@@ -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
+```